有几个关于offsetWidth/ clientWidth/scrollWidth(和-Height,分别)的问题,但没有一个全面解释这些值是什么。
offsetWidth
clientWidth
scrollWidth
-Height
此外,网络上有几个来源提供了令人困惑或不正确的信息。
你能给出一个完整的解释,包括一些视觉提示吗?此外,这些值如何用于计算滚动条宽度?
CSS 盒子模型相当复杂,尤其是在滚动内容方面。虽然浏览器使用 CSS 中的值来绘制框,但如果您只有 CSS,则使用 JS 确定所有尺寸并不简单。
这就是为什么每个元素都有六个 DOM 属性以方便您使用:offsetWidth、offsetHeight、clientWidth、clientHeight和. 这些是代表当前视觉布局的只读属性,它们都是 整数 (因此可能会出现舍入错误)。scrollWidth``scrollHeight __
offsetHeight
clientHeight
scrollWidth``scrollHeight
让我们详细介绍一下它们:
width
height
display: block
scrollHeight
由于offsetWidth考虑到了滚动条的宽度,我们可以用它通过公式来计算滚动条的宽度
scrollbarWidth = offsetWidth - clientWidth - getComputedStyle().borderLeftWidth - getComputedStyle().borderRightWidth
不幸的是,我们可能会遇到舍入错误,因为offsetWidth和clientWidth始终是整数,而实际大小可能是小数,缩放级别不是 1。
请注意,这
scrollbarWidth = getComputedStyle().width + getComputedStyle().paddingLeft + getComputedStyle().paddingRight - clientWidth
在 Chrome中 不能 可靠地工作,因为 Chrome 返回width时滚动条已经被减去。(另外,Chrome 会将 paddingBottom 渲染到滚动内容的底部,而其他浏览器则不会)