缺少任何 HTML 结束标记时的 Jsoup 行为
每当缺少一个 HTML 标签(开始标签或结束标签)时,Jsoup 的默认行为是什么?它会抛出错误还是会忽略现有标签或删除现有标签?
What would be the default behavior of Jsoup whenever there is one missing HTML tag(either start tag or end tag)? Will it throw an error or would it ignore the existing tag or remove the existing tag?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当结束标签丢失时,Jsoup 将尽力将其添加到符合 HTML5 规范 的最合理位置。当开始标签丢失时,Jsoup 将删除结束标签。
When the end tag is missing, Jsoup will try doing its best and add it at the most sensible place conform the HTML5 spec. When the start tag is missing, Jsoup will remove the end tag.