我正在尝试解析以下嵌入式html:
<table class="repeated table name" width="100%"
<tbody>
<tr class="label">
<td>Search Item</td>
</tr>
<tr class="row1">
<td>Return Item </td>
</tr>
</tbody>
</table>
搜索项的条目是一致的,所以我想搜索此条目,但我想返回以下行中的条目,返回项目。
有人可以帮忙吗?
答案 0 :(得分:0)
这样做的一种方法是:
Element els = doc.select("td:containsOwn(search item)").parents().first();
Element nextSibling = els.nextElementSibling();
System.out.println(nextSibling.select("td").text());
我假设存在一种更优雅的方法,但这可以完成工作。