使用 jQuery 按偏移位置查找元素
有没有一种简单的方法来获取特定偏移位置的所有元素(通过使用 jQuery)?或者我是否必须检查 DOM 中每个元素的偏移量?
Is there a simple method to fetch all elements at a specific offset position (by using jQuery)? Or do I have to check the offset of each element in the DOM?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
调用
document.elementFromPoint
。Call
document.elementFromPoint
.我认为唯一的方法是获取所有元素。没有其他方法可以检索位于特定位置的一组元素
I think the only method would be to fetch all the elements. There are no other ways to retrieve a set of elements that are in a particular position
如果 jQuery 有一个方法,那么它将循环遍历所有元素并进行检查。没有其他合乎逻辑的方法可以做到这一点。
据我所知,jQuery 没有,所以需要循环遍历元素;您可以使用
$().each(function());
If jQuery has a method, then it'll loop through all elements and check. There isn't another logical way to do it.
As far as I know, jQuery doesn't, so do loop through the Elements; you can use
$().each(function());