Jsoup: Extracting innertext from anchor tag

前端 未结 1 924
甜味超标
甜味超标 2020-12-21 17:02

Here\'s my problem. I have a html content: innerText I need to extract the \"innerText\". While trying this in Jsoup I found that the inn

相关标签:
1条回答
  • 2020-12-21 17:09

    You can access the text by calling the text()method on the element.

    Document doc = Jsoup.parse("<div>  <a href=\"#\"> innerText  </a> </div>");
    System.out.println(doc.html());
    Elements rows = doc.getElementsByTag("a");
    for (Element element : rows) {
        System.out.println("element = " + element.text());
    }
    

    btw. Using your posted code (and JSoup 1.8.1) produces the following output

    <html>
        <head></head>
        <body>
            <div> 
                <a href="#"> innerText </a> 
            </div>
        </body>
    </html>
    
    0 讨论(0)
提交回复
热议问题