代码编辑器:
x
1
<p id="demo">单击按钮来显示这个窗口的高度和宽度(包括工具栏和滚动条)。</p>
2
<button onclick="myFunction()">点我</button>
3
<script>
4
function myFunction(){
5
var w=window.outerWidth;
6
var h=window.outerHeight;
7
x=document.getElementById("demo");
8
x.innerHTML="Width: " + w + " Heigth: " + h;
9
}
10
</script>
11