Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 jquery 获得同一类的下一个位置,
我正在尝试此代码,但在下次单击时不起作用
var directiveScrollTop= $(".site_section").next().position().top;
如果您正在处理某个元素并且需要使用 class 查找下一个元素site_section:
site_section
$(this).nextAll(".site_section")
所以你的代码应该是:
var directiveScrollTop= $(this).nextAll(".site_section").position().top;
不过,它们需要在 DOM 中处于相同的深度。