Ctrl+/
IE11
F11
ESC
PgUp
PgDn
<html>
<head>
<title>使浏览器位于窗口的右下角</title>
</head>
<body>
<script language="javascript">
<!--
width = document.body.clientWidth + 21;
height = document.body.clientHeight + 138;
windowX = screen.width - width;
windowY = screen.height - height;
window.moveTo(windowX,windowY);
//-->
</script>
</body>
</html>
CSS代码...
JS代码...
xxxxxxxxxx