XSLT <xsl:text> 元素

定义和用法

<xsl:text> 元素用于向输出写文本,即通过样式表生成文本节点。

提示:该元素可包含文本、实体引用,以及 #PCDATA。

语法

  1. <xsl:text disable-output-escaping="yes|no">
  2.  
  3. <!-- Content:#PCDATA -->
  4.  
  5. </xsl:text>

属性

属性 描述
disable-output-escaping yes
no
可选。 默认值为 "no"。如果值为 "yes",通过实例化 <xsl:text> 元素生成的文本节点在输出时将不进行任何转义。 比如如果设置为 "yes",则 "<" 将不进行转换。如果设置为 "no",则被输出为 "&lt;"。 Netscape 6 不支持该属性。

实例

例子 1

显示每个 CD 的 title。如果不是最后一个或倒数第二个 CD,则在每个 cd-title 之间插入 ", "。如果是最后的 CD,则在 title 后添加 "!"。如果是倒数第二个 CD,则在 title 后添加 ", and ":

  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <xsl:stylesheet version="1.0"
  3. xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  4.  
  5. <xsl:template match="/">
  6. <html>
  7. <body>
  8. <h2>My CD Collection</h2>
  9. <p>Titles:
  10. <xsl:for-each select="catalog/cd">
  11. <xsl:value-of select="title"/>
  12. <xsl:if test="position() < last()-1">
  13. <xsl:text>, </xsl:text>
  14. </xsl:if>
  15. <xsl:if test="position()=last()-1">
  16. <xsl:text>, and </xsl:text>
  17. </xsl:if>
  18. <xsl:if test="position()=last()">
  19. <xsl:text>!</xsl:text>
  20. </xsl:if>
  21. </xsl:for-each>
  22. </p>
  23. </body>
  24. </html>
  25. </xsl:template>
  26.  
  27. </xsl:stylesheet>