我使用 jsoup1.6.2.jar。考虑以下代码。
String data = "<textarea><table><tr><td>Look at the following elements</td></tr></table></textarea>";
Document doc = Jsoup.parse(data);
System.out.println(doc);
输出:
<html> <head></head> <body> <textarea><table><tr><td>Look at the following elements</td</tr</table</textarea> </body> </html>
为什么它缺少>
自闭标签?到目前为止,我只在 textarea 上遇到过这个问题。谁能帮我这个?