我有一个 html 文档,我需要table
在 5th 表深处抓取所有元素,DOM
不要与第 5 个孩子混淆table
。我的问题是这 5 个table
深度结构可以包含在任意数量的div
元素中,所以我不能使用绝对路径,例如
/html/body/table/tbody/tr/td/table/tbody/tr/td/table/tbody/tr/td/table/tbody/tr/td/table
例如:
<body>
<table>
<table>
<table>
<table>
<!--Grab this one -->
<table>
</table>
</table>
</table>
</table>
</table>
</body>
或这个:
<body>
<div> <!--Could be wrapped more than just once though -->
<table>
<table>
<table>
<table>
<!--Grab this one -->
<table>
</table>
</table>
</table>
</table>
</table>
</div>
</body>