Rumah > Artikel > hujung hadapan web > scrollHeight,clientHeight,offsetHeight在各个浏览器下的区别
document.body是DOM中Document对象里的body节点, document.documentElement是文档对象根节点(html)的引用。
以下内容在下测试,均为亲测结果~
浏览器版本分别是:IE11、Firefox 53.0.3(64位)、chrome 58.0.3029.110 (64-bit)
测试程序js部分代码:
1.document.documentElement.scrollHeight与document.body.scrollHeight比较
IE浏览器下:
h1=document.documentElement.scrollHeight; //html标签下内容的实际高度,包括body标签的border,margin,padding;
h2=document.body.scrollHeight; //body标签下包括padding在内的样式实际高度,不包括body标签的border,margin;
计算结果:h1=h2+上下border(body的边框)+上下margin(body的内边距);
Firefox浏览器下:
h1= document.documentElement.scrollHeight; //html标签下内容的实际高度,包括body标签的border,margin,padding;
h2=document.body.scrollHeight; //body标签下包括padding在内的样式实际高度,不包括body标签的border,margin;
计算结果: h1=h2+上下border(body的边框)+上下margin(body的内边距);
// Firefox浏览器与IE浏览器两种情况下计算方法均相同,Chrome浏览器的计算方式有点差别
Chrome浏览器下:
h1=document.documentElement.scrollHeight; //html标签下内容的实际高度,包括body标签的border,margin,padding;
h2=document.body.scrollHeight;
计算结果:h1=h2;
2.document.documentElement.clientHeight与document.body.clientHeight比较
IE浏览器下:
h3=document.documentElement.clientHeight; //网页内容可见部分的高度,随着浏览器窗口大小的变化而变化
h4=document.body.clientHeight; //body标签下内容的实际高度,包括body标签的padding,不包括body标签的border,margin,;
Firefox浏览器下:
h3= document.documentElement.clientHeight; //网页内容可见部分的高度,随着浏览器窗口大小的变化而变化
h4=document.body.clientHeight; //body标签下内容的实际高度,包括body标签的padding,不包括body标签的border,margin,;
// Firefox浏览器与IE浏览器两种情况下计算方法均相同,Chrome浏览器的计算方式有点差别
Chrome浏览器下:
h3=document.documentElement.clientHeight; //网页内容可见部分的高度,随着浏览器窗口大小的变化而变化
h4=document.body.clientHeight; //body标签下内容的实际高度,包括body标签的padding,不包括body标签的border,margin,;
3.document.documentElement.offsetHeight与document.body.offsetHeight比较
IE浏览器下:
h5=document.documentElement.offsetHeight; //html标签下内容的实际高度,包括body标签的border,margin,padding;
h6=document.body.offsetHeight; //body标签下内容的实际高度,包括body标签的border,padding,不包括margin;
计算结果:h5=h6+margin(body标签的);
Firefox浏览器下:
h5= document.documentElement.offsetHeight; //html标签下内容的实际高度,包括body标签的border,margin,padding;
h6=document.body.offsetHeight; //body标签下内容的实际高度,包括body标签的border,padding,不包括margin;
计算结果:h5=h6+margin(body标签的);
// Firefox浏览器与IE浏览器两种情况下计算方法均相同,Chrome浏览器的计算方式有点差别
Chrome浏览器下:
h5=document.documentElement.offsetHeight; //html标签下内容的实际高度,包括body标签的border,margin,padding;
h6=document.body.offsetHeight; //body标签下内容的实际高度,包括body标签的border,padding,不包括margin;
计算结果:h5=h6+margin(body标签的);
以上三个浏览器,当body标签的margin为0时,h5=h6;
Atas ialah kandungan terperinci scrollHeight,clientHeight,offsetHeight在各个浏览器下的区别. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!