为什么要加上“|| document.body.clientWidth”后面这部分,这个不是指body标签的宽吗,而问题是要求出浏览器的可视化区域。。。
<!DOCTYPE HTML>
<html>
<head>
<title>无标题文档</title>
</head>
<body>
<script type="text/javascript">
document.write(window.innerHeight+"px<br>");
document.write(window.innerWidth+"px<br>");
document.write(document.documentElement.clientHeight||document.body.clientHeight);
document.write("px<br>");
document.write(document.documentElement.clientWidth||document.body.clientWidth);
document.write("px<br>");
</script>
</body>
</html>