답변:
이 경우 <tr>
다음.next()
과 같이 then use 로 이동해야합니다 .
$(obj).closest('tr').next().find('.class');
또는 .class
내부 없이 중간에 행이있을 수있는 경우 다음 .nextAll()
과 같이 사용할 수 있습니다 .
$(obj).closest('tr').nextAll(':has(.class):first').find('.class');
$(obj).closest('tr').nextAll('.class')[0].attr('data-attribute');
문서 를 보면 다음과 같은 시나리오에서 next ()를 사용할 수 없습니다 .
Next () 일치하는 요소 집합에서 각 요소 의 바로 다음 형제를 가져 옵니다. 선택기가 제공되면 선택자와 일치하는 다음 형제를 검색합니다.
두 번째 DIV가 동일한 TD에 있으면 다음과 같이 코딩 할 수 있습니다.
// Won't work in your case
$(obj).next().filter('.class');
$(obj).parents('table').find('.class')