我有类似的问题:
是否有可能在 JSoup 中实现它?
您可能正在寻找调用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());
}
}