我正在尝试使用 XPath 访问 Dom 的特定元素
这是一个例子
<table>
<tbody>
<tr>
<td>
<b>1</b> <a href="http://www.url.html">data</a><br>
<b>2</b> <a href="http://www.url.html">data</a><br>
<b>3</b> <a href="http://www.url.html">data</a><br>
</td>
</tr>
</tbody>
</table>
我想定位“table td”,所以我在 Xpath 中的查询类似于
$finder->query('//table/td');
只有这不会将 td 作为其子子项返回,并且直接访问将使用
$finder->query('//tr/td');
有没有更好的方法来编写查询,它允许我使用第一个示例之类的东西,忽略中间的元素并返回 TD?