JavaScript 参考手册
Window outerWidth 和 outerHeight 属性
获取窗口的高度与宽度(包括工具栏/滚动)
源代码:
点击运行 »
<p id="demo">单击按钮来显示这个窗口的高度和宽度(包括工具栏和滚动条)。</p> <button onclick="myFunction()">点我</button> <script> function myFunction() { var w = window.outerWidth; var h = window.outerHeight; x = document.getElementById("demo"); x.innerHTML = "Width: " + w + " Heigth: " + h; } </script>
运行结果:
点击运行 »