<script type="text/javascript"> var wid=document.documentElement.scrollWidth||document.body.scrollWidth; var hei=document.documentElement.scrollHeight||document.body.scrollHeight; alert('width='+wid+' height='+hei); </script>
如上图,此时文档内容为空, 获取到的scrollHeight为8px
但是当把body的margin设置为0px 时
body{margin:0px;}
,获取到的crollHeight就和clientHeight相同,这是为什么
谢谢大神们解答
卡迪亚兹