<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<script type="text/javascript">
document.write(document.body.scrollWidth + "<br>");
document.write(document.body.scrollHeight + "<br>");
document.write(document.body.clientWidth + "<br>");
document.write(document.body.clientHeight + "<br>");
</script>
</body>
</html>
不同浏览器存在不同效果。
var bodyW = document.documentElement.clientWidth||document.body.clientWidth;
var bodyH = document.documentElement.clientHeight||document.body.clientHeight;
//body的宽高,body是IE7之前的版本。