例如input-tag:
String html = "<html><head></head><body><input name='user'></input></body></html>";
Elements input = Jsoup.parse(html).select("input");
for (Element element : input)
System.out.println(Jsoup.parse(element.outerHtml());
结果:
<html><head></head><body><input name='user'/></body></html>
1)但有必要:
<html><head></head><body><input name='user'></input></body></html>
2)并通过Jsoup将"<input.../>"
与"<input...> </input...>"
区分开来
答案 0 :(得分:0)
这应该这样做:
Elements input = Jsoup.parse(html).select("input");
for(Element element:elements){
System.out.println(element.tag().isSelfClosing());
}