共用方式為


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

<?xml version ="1.0"?>
<?xml-stylesheet type="text/xsl" href="news.xsl"?>
<news>
<story1>Here is the top news story.</story1>
    <story2> Here is the next news story.</story2>
</news>

XSLT 檔 (news.xsl)

<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
      xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >

<xsl:template match="/">
<HTML>
<BODY>
<xsl:comment>insert top news story</xsl:comment>
<P>
<xsl:value-of select="//story1"/>
</P>
</BODY>
</HTML>
</xsl:template>

</xsl:stylesheet>

輸出

此為格式化輸出:

Here is the top news story.

此為處理器輸出:

<HTML>
<BODY><!--insert top news story-->
<P>Here is the top news story.</P>
</BODY>
</HTML>