BOM中的位置属性

client系列
clientWidth      可视宽+padding
clientHeight     可视高+padding
clientLeft      border
clientTop      border

offset系列
offsetWidth   可视宽+padding+border
offsetHeight  可视高+padding+border
offsetLeft    获取到左边定位父级的距离
offsetTop     获取到顶边定位父级的距离

scroll系列
scrollWidth  内容实际宽度
scrollHeight 内容实际高度
scrollLeft   左边被卷去的距离
scrollTop    顶边被卷去的距离


原文地址:https://www.cnblogs.com/lv77/p/14033378.html