<xsl:comment> 元素
在输出中生成注释。
<xsl:comment>
</xsl:comment>
元素信息
备注
由 <xsl:comment>
的子级生成的文本出现在开始字符 (<!--
) 和结束字符 (-->
) 之间。
示例
在以下示例中,news.xsl 样式表转换 news.xml 文档,并在 XSLT 输出中插入一条注释。
XML 文件 (news.xml)
XSLT 文件 (news.xsl)
输出
以下是格式化输出:
Here is the top news story.
以下是处理器输出:
<HTML>
<BODY><!--insert top news story-->
<P>Here is the top news story.</P>
</BODY>
</HTML>