我有一个html表,如:
<table ..... class="cars">
<tr class="item-odd">
...
</tr>
<tr class="item-even">
</tr>
</table>
如何使用xpath获取表格行?
//tr[contains(@class, ???)
我可以在那里使用OR以某种方式说item-odd | item-even
答案 0 :(得分:17)
你可以得到这样的行:
//table[@class='cars']/tr
要获得项目奇数行,您可以这样做:
//table[@class='cars']/tr[@class='item-odd']
是的,您可以使用or
,例如:
//table[@class='cars']/tr[@class='item-odd' or @class='item-even']
有关详细信息,请参阅http://www.w3.org/TR/xpath。