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.
<div></div> <a></a> <a class='here'>
我想从 div 找到这里
but $(this).next().next().find('.here')似乎没有工作
but $(this).next().next().find('.here')
如果this是div那么
this
div
$(this).next().next('.here')
尝试.next('div.here');
.next('div.here');
$(this).next().next('a.here');