为了账号安全,请及时绑定邮箱和手机立即绑定

documentElement和body的区别?

documentElement和body的区别?

慕虎7371278 2018-09-12 13:19:12
今天学习scrollHeight时候,在谷歌控制台发现document.documentElement.scrollHeight === document.body.scrollHeight返回的是true,我想知道documentElement和body的区别?
查看完整描述

1 回答

?
大话西游666

TA贡献1817条经验 获得超14个赞

document.documentElement返回的是html元素,它是只读的。
body返回的就是body元素.

elem = document;

 doc = elem.documentElement;


 // Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height], whichever is greatest

 // unfortunately, this causes bug #3838 in IE6/8 only, but there is currently no good, small way to fix it.

return Math.max(elem.body["scroll" + name], doc["scroll" + name], elem.body["offset" + name], doc["offset" + name], doc["client" + name]);

获取页面高度jquery是这么实现的,取几个的最大值能解决一些兼容性等的问题。


查看完整回答
反对 回复 2018-10-31
  • 1 回答
  • 0 关注
  • 849 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信