我有一张看起来像这样的 trs 表。
<tr>
<td><a href="http://www.mysite.com">Link</a></td>
<td>value 2</td>
<td>value 3</td>
<td>value 4</td>
<td>value 5</td>
</tr>
我正在使用 xPath 来全选<tr>
并遍历它们。
foreach($xpathResult as $item){
//print the href of the first td
//print the nodeValue of the second td
//print the nodeValue of the 3rd td
//print the nodeValue of the 4th td
//print the nodeValue of the 5th td
}
如何打印第一个 td 的 href 和nodeValue
之后每个 td 的 href?有firstChild
and lastChild
,但我如何到达中间 s?我可以使用firstChild->nextSibling
,firstChild->nextSibling->nextSibling
但没有更简单的方法吗?