我有很多表,我想从这些表中选择所有节点,除了那些至少包含一个 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>