Ctrl+/
IE11
F11
ESC
PgUp
PgDn
<html>
<head>
<title>使浏览器窗口适合屏幕大小</title>
</head>
<body>
<script language="javascript">
<!--
width = screen.width;
height = screen.height-28;
window.resizeTo(width,height);
window.moveTo(0,0);
//-->
</script>
</body>
</html>
CSS代码...
xxxxxxxxxx
JS代码...