无法弄清楚为什么没有选择带有 AAA 的“表”:
<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,我只需要单击元素后的第一个表。