區別:
body是DOM對象裡的body子節點,即 <body> 標簽;
documentElement 是整個節點樹的根節點root,即<html> 標簽;
沒使用DTD情況即怪異模式BackCompat下:
復制代碼 代碼如下:
document.documentElement.clientHeight=0document.body.clientHeight=618
使用DTD情況即標准模式CSS1Compat下:
復制代碼 代碼如下:
document.documentElement.clientHeight=618 document.body.clientHeight=28(表示內容的高度)
因此提取浏覽器的尺寸是要注意了。可以參考以下代碼:
復制代碼 代碼如下:
if (document.compatMode == "BackCompat") {
cWidth = document.body.clientWidth;
cHeight = document.body.clientHeight;
sWidth = document.body.scrollWidth;
sHeight = document.body.scrollHeight;
sLeft = document.body.scrollLeft;
sTop = document.body.scrollTop;
}
else { //document.compatMode == "CSS1Compat"
cWidth = document.documentElement.clientWidth;
cHeight = document.documentElement.clientHeight;
sWidth = document.documentElement.scrollWidth;
sHeight = document.documentElement.scrollHeight;
sLeft = document.documentElement.scrollLeft == 0 ? document.body.scrollLeft : document.documentElement.scrollLeft;
sTop = document.documentElement.scrollTop == 0 ? document.body.scrollTop : document.documentElement.scrollTop;
}