欢迎访问我的博客https://qqqww.com/,祝码农同胞们早日走上人生巅峰,迎娶白富美~~~
上篇文档总结了《一些坐标属性》,这里总结一些距离或者宽高属性,它们分别为:
.offset()
.position()
.scrollTop(),.scrollLeft
.width(),.height
.innerWidth(),innerHeight()
.outerWidth(),outerHeight()
.offset()
.offset().top:元素距离文档上边的距离
.offset().left:元素距离文档左边的距离
当然也可以自己设置
xxx.offset({
left: 10,
top: 10
})
.position()
.position().top 和 .position().left: 与被定位的祖先元素的偏移距离
- 若父元素被定位了,则就是离父元素的偏移距离
- 反之,网上辈祖先找,如果没有祖先被定位,一般是相对于 body 偏移距离
.scrollTop(),.scrollLeft
滚动条滚动被卷去的距离:
.scrollTop():滚动条卷去的垂直距离
.scrollLeft():滚动条卷去的水平距离
.width(),.height
元素的宽度,不包含
padding,border,margin
,且支持写操作,例如$test.width(100)
.innerWidth(),innerHeight()
元素的宽度,包含
padding
,不包含border
与margin
,且支持写操作,例如$test.innerWidth(100)
.outerWidth(),outerHeight()
- 元素的宽度,包含
padding
和border
,不包含margin
- 若
.outerWidth(true)
,此时连margin
一块都包括了