查找 HTML 元素和浏览器(或窗口)边之间的距离
如何使用 jQuery 查找 html 元素与浏览器(或窗口)一侧(左侧或顶部)之间的像素距离?
How to find the distance in pixels between html element and one of the browser (or window) sides (left or top) using jQuery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
offset
函数来实现。它为您提供元素相对于文档(左、上)的位置:实时示例在我的浏览器上,该示例表示我们的目标跨度位于文档的 157,47(左、上)。这是因为我对
body
元素应用了一个大的填充值,并使用了一个跨度,上面有一个间隔符,前面有一些文本。这是第二个示例,显示文档顶部绝对左侧的段落,显示 0,0 作为其位置(并且还显示稍后的跨度从左侧和顶部都有偏移,在我的浏览器上为 129,19)。
You can use the
offset
function for that. It gives you the element's position relative to the (left,top) of the document:Live example On my browser, that example says that the span we've targeted is at 157,47 (left,top) of the document. This is because I've applied a big padding value to the
body
element, and used a span with a spacer above it and some text in front of it.Here's a second example showing a paragraph at the absolute left,top of the document, showing 0,0 as its position (and also showing a span later on that's offset from both the left and top, 129,19 on my browser).
jQuery.offset
需要与scrollTop
和scrollLeft
如下图所示:演示:
jQuery.offset
needs to be combined withscrollTop
andscrollLeft
as shown in this diagram:Demo: