标签: jquery
<div></div> <a></a> <a class='here'>
我想在这里找到div
but $(this).next().next().find('.here')似乎无法正常工作
but $(this).next().next().find('.here')
答案 0 :(得分:0)
如果this是div那么
this
div
$(this).next().next('.here')
答案 1 :(得分:0)
尝试.next('div.here');
.next('div.here');
$(this).next().next('a.here');