jQuery:position() 和 offset() 之间的区别
position()
和 offset()
有什么区别?我尝试在单击事件中执行以下操作:
console.info($(this).position(), $(this).offset());
它们似乎返回完全相同的...(单击的元素位于表格中的表格单元格内)
What is the difference between position()
and offset()
? I tried to do the following in a click event:
console.info($(this).position(), $(this).offset());
And they seem to return exactly the same... (The clicked element is within a table cell in a table)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
它们是否相同取决于上下文。
position
返回一个{left: x, top: y}
对象相对于偏移父级offset
返回一个{left: x, top: y}
相对于文档的对象。显然,如果文档是偏移父文档(通常是这种情况),那么它们将是相同的。 偏移父是“最近定位的包含元素。 ”
例如,对于此文档:
那么
$('#sub').offset()
将是{left: 200, top: 200}
,但其.position()
将是{left: 0, top: 0}
。Whether they're the same depends on context.
position
returns a{left: x, top: y}
object relative to the offset parentoffset
returns a{left: x, top: y}
object relative to the document.Obviously, if the document is the offset parent, which is often the case, these will be identical. The offset parent is "the closest positioned containing element."
For example, with this document:
Then the
$('#sub').offset()
will be{left: 200, top: 200}
, but its.position()
will be{left: 0, top: 0}
.来源:http://api.jquery.com/offset/
Source: http://api.jquery.com/offset/
这两个函数都返回一个具有两个属性的普通对象:宽度和宽度。高度。
,但是当对象的 css 位置为“绝对”时,两个函数都会返回 width=0 &高度=0
Both functions return a plain object with two properties: width & height.
BUT when the object's css position is "absolute" both functions will return width=0 & height=0