jQuery:position() 和 offset() 之间的区别

发布于 2024-09-08 18:44:29 字数 197 浏览 6 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

狠疯拽 2024-09-15 18:44:29

它们是否相同取决于上下文。

  • position 返回一个 {left: x, top: y} 对象相对于偏移父级

  • offset 返回一个 {left: x, top: y} 相对于文档的对象。

显然,如果文档是偏移父文档(通常是这种情况),那么它们将是相同的。 偏移父是“最近定位的包含元素。 ”

例如,对于此文档:

 <div style="position: absolute; top: 200; left: 200;">
     <div id="sub"></div>
 </div>

那么 $('#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 parent

  • offset 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:

 <div style="position: absolute; top: 200; left: 200;">
     <div id="sub"></div>
 </div>

Then the $('#sub').offset() will be {left: 200, top: 200}, but its .position() will be {left: 0, top: 0}.

我一直都在从未离去 2024-09-15 18:44:29

.offset() 方法允许我们检索元素相对于文档的当前位置。将此与 .position() 进行对比,后者检索相对于偏移父级的当前位置。当将新元素放置在现有元素之上以进行全局操作(特别是实现拖放)时,.offset() 更有用。

来源:http://api.jquery.com/offset/

The .offset() method allows us to retrieve the current position of an element relative to the document. Contrast this with .position(), which retrieves the current position relative to the offset parent. When positioning a new element on top of an existing one for global manipulation (in particular, for implementing drag-and-drop), .offset() is the more useful.

Source: http://api.jquery.com/offset/

枕花眠 2024-09-15 18:44:29

这两个函数都返回一个具有两个属性的普通对象:宽度和宽度。高度。

offset()是指相对于文档的位置。

position()指的是相对于其父元素的位置

,但是当对象的 css 位置为“绝对”时,两个函数都会返回 width=0 &高度=0

Both functions return a plain object with two properties: width & height.

offset() refers to the position relative to the document.

position() refers to the position relative to its parent element

BUT when the object's css position is "absolute" both functions will return width=0 & height=0

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文