index.html

来自「一个简单的新闻后台管理系统」· HTML 代码 · 共 19 行

HTML
19
字号
<html>
<head>
<title></title>
<script src="js/out.js"></script>
<script>
function openNewWin(){
	var win = window.open("index2.html","hanshare","left=0,top=0,height="+(screen.availHeight-20)+", width="+(screen.availWidth-10)+", toolbar=no , menubar=no, scrollbars=no,location=no, status=no");
	if(win!=null)
	{
		CloseWin();
	}
}
</script>
</head>
<body onLoad="openNewWin()">
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?