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.
最近的()用于下面,
对于集合中的每个元素,通过测试元素本身并向上遍历其在 DOM 树中的祖先来获取与选择器匹配的第一个元素。
我需要向下遍历而不是向上遍历,这可能吗
我认为您可以使用该.find()方法并使用[0]或.first()
.find()
[0]
.first()
例如:
$('parent').find('searchSelector').first();
试试.find()。取决于您的页面结构等
的反义词closest()是parents('.selector').last()。
closest()
parents('.selector').last()
示例小提琴