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