XSLT <xsl:variable> 元素

定义和用法

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

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

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

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

语法

  1. <xsl:variable
  2. name="name"
  3. select="expression">
  4.  
  5. <!-- Content:template -->
  6.  
  7. </xsl:variable>

属性

属性 描述
name name 必需。规定变量的名称。
select expression 可选。定义变量的值。

实例

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