使用 jQuery 按偏移位置查找元素

发布于 2024-10-12 20:22:59 字数 69 浏览 6 评论 0原文

有没有一种简单的方法来获取特定偏移位置的所有元素(通过使用 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 技术交流群。

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

发布评论

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

评论(3

念三年u 2024-10-19 20:22:59

我认为唯一的方法是获取所有元素。没有其他方法可以检索位于特定位置的一组元素

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

萌面超妹 2024-10-19 20:22:59

如果 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());

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