scrollWidth,clientWidth,offsetWidth的区别

scrollWidth:对象的实际内容的宽度,不包边线宽度,会随对象中内容超过可视区后而变大。
clientWidth:对象内容的可视区的宽度,不包滚动条等边线,会随对象显示大小的变化而改变。
offsetWidth:对象整体的实际宽度,包滚动条等边线,会随对象显示大小的变化而改变。

scrollWidth,clientWidth,offsetWidth的区别_第1张图片

clientWidth和clientHeigh 、 clientTop和clientLeft

clientWidth =width+左右padding

clientHeigh的实际高度

clientHeigh = height + 上下padding

clientTop的实际宽度

clientTop = boder.top(上边框的宽度)

clientLeft的实际宽度

clientLeft = boder.left(左边框的宽度)

offsetWidth和offsetHight 、 offsetTop和offsetLeftoffsetWidth的实际宽度

offsetWidth = width + 左右padding + 左右boder

offsetHeith的实际高度

offsetHeith = height + 上下padding + 上下boder

offsetTop实际宽度

offsetTop:当前元素 上边框 外边缘 到 最近的已定位父级(offsetParent) 上边框 内边缘的 距离。如果父级都没有定位,则分别是到body 顶部 和左边的距离

offsetLeft实际宽度

offsetLeft:当前元素 左边框 外边缘 到 最近的已定位父级(offsetParent) 左边框 内边缘的距离。如果父级都没有定位,则分别是到body 顶部 和左边的距离

scrollWidth和scrollHeight 、 scrollTop和scrollLeft

scrollWidth:获取指定标签内容层的真实宽度(可视区域宽度+被隐藏区域宽度)

scrollHeight:获取指定标签内容层的真实盖高度(可视区域高度+被隐藏区域高度)

scrollTop:内容层顶部到可视区域顶部的距离

scrollLeft:内容层左端到可视区域左边的距离

你可能感兴趣的:(JavaScript基础)