XSLT <xsl:variable> 元素


定义和用法

<xsl:variable> 元素用于声明局部或全局的变量。

注释:如果被声明为顶层元素,则该变量是全局的,而如果在模板内声明,则变量是本地的。

注释:一旦您设置了变量的值,就无法改变或修改该值!

提示:您可以通过 <xsl:variable> 元素的内容或通过 select 属性,向变量添加值!


语法

  1. <xsl:variable
  2. name="name"
  3. select="expression">
  4. <!-- Content:template -->
  5. </xsl:variable>
属性
属性描述
namename必需。规定变量的名称。
selectexpression可选。定义变量的值。

实例

例子 1

如果设置了 select 属性,<xsl:variable> 元素就不能包含任何内容。如果 select 属性含有文字字符串,则必须给字符串加引号。

下面的两个例子为变量 "color" 赋值 "red":

  1. <xsl:variable name="color" select="'red'" />
  1. <xsl:variable name="color" select='"red"' />
例子 2

如果 <xsl:variable> 元素只包包含 name 属性,且没有内容,则变量的值是空字符串:

  1. <xsl:variable name="j" />
例子 3

下面的例子通过 <xsl:variable> 元素的内容为变量 "header" 赋值:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <xsl:stylesheet version="1.0"
  3. xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  4. <xsl:variable name="header">
  5. <tr>
  6. <th>Element</th>
  7. <th>Description</th>
  8. </tr>
  9. </xsl:variable>
  10. <xsl:template match="/">
  11. <html>
  12. <body>
  13. <table>
  14. <xsl:copy-of select="$header" />
  15. <xsl:for-each select="reference/record">
  16. <tr>
  17. <xsl:if category="XML">
  18. <td><xsl:value-of select="element"/></td>
  19. <td><xsl:value-of select="description"/></td>
  20. </xsl:if>
  21. </tr>
  22. </xsl:for-each>
  23. </table>
  24. <br />
  25. <table>
  26. <xsl:copy-of select="$header" />
  27. <xsl:for-each select="table/record">
  28. <tr>
  29. <xsl:if category="XSL">
  30. <td><xsl:value-of select="element"/></td>
  31. <td><xsl:value-of select="description"/></td>
  32. </xsl:if>
  33. </tr>
  34. </xsl:for-each>
  35. </table>
  36. </body>
  37. </html>
  38. </xsl:template>
  39. </xsl:stylesheet>

分类导航