<xsl:comment> 元素

在输出中生成注释。

<xsl:comment>
</xsl:comment>

元素信息

出现次数

无限制

父元素

xsl:copyxsl:elementxsl:fallbackxsl:for-eachxsl:ifxsl:messagexsl:otherwisexsl:paramxsl:templatexsl:variablexsl:whenxsl:with-param、输出元素

子元素

xsl:apply-importsxsl:apply-templatesxsl:call-templatexsl:choosexsl:copyxsl:copy-ofxsl:fallbackxsl:for-eachxsl:ifxsl:messagexsl:numberxsl:textxsl:value-ofxsl:variable

备注

<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>