我只想选择表中的第一级“td”元素,而不是任何嵌套表的单元格。例如:
<table id="Outer">
<tr>
<td> --this one
</td>
<td> --this one
<table>
<tr>
<td></td> -- but not this one or any deeper nested cells
</tr>
</table>
</td>
</tr>
</table>
(是的,在产品代码中,我将包括 tbody、thead...)