我有很多表格,我想从这些表格中选择所有的节点, 除了那些至少含有 li 节点的表格。
示例:
<table>
<tr><td>all these nodes should match</td></tr>
</table>
<table>
<tr><td><ul><li>all these nodes including table should NOT match</li></ul></td></tr>
</table>
<table>
<tr><td><div>all these nodes should match</div></td></tr>
</table>