查找页面中每个链接的坐标
在 JavaScript 中: 如何找到网页中每个链接的坐标(x、y、高度、宽度)?
In Javascript:
How does one find the coordinates (x, y, height, width) of every link in a webpage?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用 jQuery:
With jQuery:
纯 JavaScript:
Plain JavaScript:
没有 jquery:
尝试此页面的 func 来获取 x 和 y 值:
http:// blogs.korzh.com/progtips/2008/05/28/absolute-coordinates-of-dom-element-within-document.html
但是,如果您尝试添加图像或类似的内容,我'建议使用 a:after css 选择器。
without jquery:
try this page for a func to get the x and y values:
http://blogs.korzh.com/progtips/2008/05/28/absolute-coordinates-of-dom-element-within-document.html
However, if you're trying to add an image or something similar, I'd suggest using the a:after css selector.
使用 jQuery,就这么简单:
Using jQuery, it's as simple as: