如何获得//Comments
&/*Comments*/
从html和jsp页面。
我有评论<!--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*/
.
html中的注释必须以