1

如何从 html 和 jsp 页面获取类似//Comments&的评论。/*Comments*/

我有评论<!--Comments-->,,,<%--Comments--%><%Comments%>下列方式使用 jericho html 解析器。

List<Tag> comments = source.getAllTags(StartTagType.COMMENT);(<!--Comments-->)
List<Tag> serverSideComments = source.getAllTags(StartTagType.SERVER_COMMON_COMMENT);
(<%--Comments--%>)
List<Tag> serverComments = source.getAllTags(StartTagType.SERVER_COMMON);("<%Comments%>")

但我无法找到//& /*Comments*/

4

1 回答 1

0

html 中的注释必须以 < 开头。如果您添加带有 // 的内容,将像文本一样被解释。 http://www.w3schools.com/html/html_comments.asp 我认为这是一个标准,jericho 没有自定义标签的方法。

于 2015-05-12T07:23:58.623 回答