我四处搜寻,我找不到办法做到这一点。我有一组元素。我从这个组中选择一个元素。如何找到所选元素后面的下一个元素?
答案 0 :(得分:13)
使用方法nextElementSibling()
。
示例:
<body>
<p>First in family!</p>
<p>Second in family!</p>
<p>Third in family!</p>
</body>
Jsoup:
Element firstParagraph = doc.select("p:eq(0)").first();
Element secondParagraph = firstParagraph.nextElementSibling();
System.out.println(firstParagraph.text() + " " + secondParagraph.text());
输出:家庭第一!家庭中的第二个!