我有以下 HTML。
<div>
<table></table>
<div><table id="startingPoint"></table></div>
<table><tfoot><tr id="getThis"></tr></tfoot></table>
</div>
使用 find() 按预期选择 #getThis。
$('#startingPoint').parent().next().find('tfoot tr')
使用 children() 不会选择 #getThis。为什么?
$('#startingPoint').parent().next().children('tfoot tr')