document.body和document.documentElement的区别

来源:互联网 发布:unity3d仙侠资源 编辑:程序博客网 时间:2024/05/16 05:42

document.body和document.documentElement比较:

document.body是DOM中Document对象里的body节点, document.documentElement是文档对象根节点(html)的引用。


document.body.scrollHeight和document.documentElement.scrollHeight的区别:

     document.body.scrollHeight是body元素的滚动高 度,document.documentElement.scrollHeight为页面的滚动高度,且 document.documentElement.scrollHeight在IE和Firefox下还有点小差异。
     IE : document.documentElement.scrollHeight = document.body.scrollHeight + marginTop bottom高度 + 上下border宽度
     firefox : document.documentElement.scrollHeight = document.body.scrollHeight + marginTop bottom高度

这是DOMDocument对象里的body子节点和整个节点树的根节点root。

原创粉丝点击