<table>
<tr>
<th class="a">Name</th>
<th class="b">Old </th>
<th class="x">New</th>
</tr>
</table>
在上面的片段中,使用X路径,我需要获取“ th ” wrto“ tr ”节点的索引,该索引是3。实现这一目标?
我尝试使用
查找节点//aside//table//tr/th[text() = 'New']
但是我不知道找到它的相对索引
是否有任何轴指定符来获取其索引?
答案 0 :(得分:2)
尝试在XPath下获取节点索引:
Startup