分析clientHeight、offsetHeight、scrollHeight
window.screen.availWidth 返回当前屏幕宽度(空白空间)
window.screen.availHeight 返回当前屏幕高度(空白空间)
window.screen.width 返回当前屏幕宽度(分辨率值)
window.screen.height 返回当前屏幕高度(分辨率值)
window.document.body.offsetHeight; 返回当前网页高度
window.document.body.offsetWidth; 返回当前网页宽度
我们这里说说四种浏览器对 document.body 的 clientHeight、offsetHeight 和 scrollHeight 的解释。
这四种浏览器分别为IE(Internet Explorer)、NS(Netscape)、Opera、FF(FireFox)。
clientHeight
大家对 clientHeight 都没有什么异议,都认为是内容可视区域的高度,内容来自中国站长资讯网(www.chinahtml.com)也就是说页面浏览器中可以看到内容的这个区域的高度,一般是最后一个工具条以下到状态栏以上的这个区域,与页面内容无关。
offsetHeight
IE、Opera 认为 offsetHeight = clientHeight + 滚动条 + 边框。
NS、FF 认为 offsetHeight 是网页内容实际高度,可以小于 clientHeight。
scrollHeight
IE、Opera 认为 scrollHeight 是网页内容实际高度,可以小于 clientHeight。
NS、FF 认为 scrollHeight 是网页内容高度,不过最小值是 clientHeight。
简单地说
clientHeight 就是透过浏览器看内容的这个区域高度。
NS、 FF 认为 offsetHeight 和 scrollHeight 都是网页内容高度,只不过当网页内容高度小于等于 clientHeight 时,scrollHeight 的值是 clientHeight,而 offsetHeight 可以小于 clientHeight。
IE、Opera 认为 offsetHeight 是可视区域 clientHeight 滚动条加边框。scrollHeight 则是网页内容实际高度。
同理
clientWidth、offsetWidth 和 scrollWidth 的解释与上面相同,只是把高度换成宽度即可。
详细解决方案
分析clientHeight、offsetHeight、scrollHeight
热度:60 发布时间:2024-01-05 06:10:55.0
相关解决方案
- IE8 锚链接,IE offsetHeight 兼容有关问题(请各位前台高人帮忙)
- JQ1.8 $(object).attr("scrollHeight") 不起作用了咋回事
- 请问这句话的意思-tdiv.style.pixelTop>=tdiv.offsetHeight*1
- scrollHeight,scrollWidth与height,width有什么区别?如果元素无滚动条,那二者的值,该如何处理
- offsetHeight, clientHeight与scrollHeight的差异
- scrollHeight、clientHeight ,offsetHeight 差异
- JQ1.8 $(object).attr("scrollHeight") 不起作用了咋回事
- scrollWidth offsetWidth offsetHeight offsetLeft .
- 各浏览器clientHeight、offsetHeight、scrllHeight差异
- 四种浏览器对 clientHeight、offsetHeight、scrollHeight、clientWidth、offsetWidth 跟 scrollWi
- document.body.clientHeight 取高度出错有关问题
- offsetHeight, clientHeight与scrollHeight的差别
- clientHeight 有关问题
- 总结clientHeight、offsetHeight、scrollHeight、offsetTop、scrollTop5个高度
- 宽度、高度的offsetWidth offsetHeight、clientWidth clientHeight、Width Height的区别
- clientHeight、scrollHeight、offsetHeight都是些啥?
- document.body.clientHeight 和 document.documentElement.clientHeight 的区别
- clientHeight / offsetHeight / scrollHeight / Window.innerHeight / Window.outerHeight
- 分析clientHeight、offsetHeight、scrollHeight
- clientHeight, scrollHeight, offsetHeight
- 获取手机端的屏幕宽度和高度 window.innerHeight || document.documentElement.clientHeight || document.body.clientHe
- 关于clientHeight,offsetHeight,scrollHeight ,offsetTop,scrollTop...想要搞清楚,看这一篇就够了!
- scrollTop、scrollLeft、scrollWidth、scrollHeight
- height、clientHeight、scrollHeight、offsetHeight区别
- srcollTop、clientHeight、scrollHeight详解
- JS中scrollHeight,clientHeight、scrollTop、offsetTop等相关属性介绍