<b>CLICK ME!</b>
<br/>
<table>
<tr>
<td>AAA</td>
</tr>
</table>
<b>CLICK ME!</b>
<table>
<tr>
<td>BBB</td>
</tr>
</table>
<script>
$(document).ready(function() {
$(document).on('click', "b", function(){
$(this).next("table").css('background-color', 'red');
});
});
</script>
當使用$(this).next().next().css('background-color', 'red');
表中找到。
不尋找nextAll,我只需要單擊元素後的第一個表。
「不工作」永遠不是一個有效的問題 – PeeHaa