21

我有类似的问题:

  1. jQuery:从 .text() 中排除子级

是否有可能在 JSoup 中实现它?

4

1 回答 1

28

您可能正在寻找调用ownText

import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;

public class Main {
    public static void main(String[] args) throws Exception {
        final Document document = Jsoup.parse("<html><head/><body><a href=\"#\" class=\"artist\">Soulive<span class=\"create-play\">Play</span></a></body></html>");
        final Element elem = document.getElementsByAttributeValue("class", "artist").first();
        System.out.println(elem.ownText());
    }
}
于 2012-11-16T21:55:06.200 回答