0

我有以下要解析的嵌入式 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>

Search Item 的条目是一致的,所以我想搜索这个条目,但是我想返回下一行中的条目,Return Item。

有人可以帮忙吗?

4

1 回答 1

0

一种方法是:

Element els = doc.select("td:containsOwn(search item)").parents().first();
Element nextSibling = els.nextElementSibling();

System.out.println(nextSibling.select("td").text());

我假设存在一种更优雅的方法,但这可以完成工作。

于 2013-04-16T08:14:27.323 回答