小编San*_*van的帖子

Jsoup: Extracting innertext from anchor tag

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 innertext goes outside the anchor tag when parsed by Jsoup.

Here's my code

Document doc=Jsoup.parse("<div>  <a href="#"> innerText  </a> </div>");
System.out.println(doc.html());
Run Code Online (Sandbox Code Playgroud)

output:

<html>
 <head></head>
 <body>
  <div >
   <a href="#"></a>innerText
  </div>
 </body>
</html>
Run Code Online (Sandbox Code Playgroud)

why is "innerText" moved outside the anchor tag?

html java html-parsing jsoup

5
推荐指数
1
解决办法
2740
查看次数

标签 统计

html ×1

html-parsing ×1

java ×1

jsoup ×1