您的位置:首页 > 其它

document.body和document.documentElement的区别

2012-02-10 16:18 471 查看
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。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: