实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<p id="demo"></p>
6
7
<script>
8
var w=window.innerWidth
9
|| document.documentElement.clientWidth
10
|| document.body.clientWidth;
11
12
var h=window.innerHeight
13
|| document.documentElement.clientHeight
14
|| document.body.clientHeight;
15
16
x=document.getElementById("demo");
17
x.innerHTML="Browser inner window width: " + w + ", height: " + h + "."
18
</script>
19
20
</body>
21
</html>