选择坐标为 (x,y) 的元素
有没有办法使用 jquery 的 (x,y) 坐标或任何其他方式来选择元素。除了遍历所有页面元素并比较坐标之外。
Is there a way to select an element using it's (x,y) coordinates with jquery or in any other way. other than going through all the page elements and comparing coordinates.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要使用
document.elementFromPoint()
。请注意,这不是 jQuery 特定的。 quirksmode 的参考和兼容性指南。You need to use
document.elementFromPoint()
. Note that this is not jQuery specific. Reference and compatibility guidance on quirksmode.尝试这个,跨浏览器工作
Try this, works cross browser