5

我四处寻找我找不到这样做的方法。我有一组元素。我从该组中选择一个元素。我怎样才能找到这个选定元素之后的下一个元素?

4

1 回答 1

15

使用方法nextElementSibling()

例子:

<body>
    <p>First in family!</p>
    <p>Second in family!</p>
    <p>Third in family!</p>
</body>

汤:

Element firstParagraph = doc.select("p:eq(0)").first();
Element secondParagraph = firstParagraph.nextElementSibling();

System.out.println(firstParagraph.text() + " " + secondParagraph.text());

输出:家庭第一!家庭第二!

于 2013-10-16T07:31:36.023 回答