示例
如果存在 "select" 属性,则 <xsl:variable> 元素不能包含任何内容。如果 select 属性包含文本字符串,则该字符串必须在引号内。以下两个示例将值 "red" 指定给变量 "color":
<xsl:variable name="color" select="'red'" />
<xsl:variable name="color" select='"red"' />
如果 <xsl:variable> 元素只包含 name 属性,并且没有内容,则变量的值为空字符串:
<xsl:variable name="j" />
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:variable name="header">
<tr bgcolor="#9acd32">
<th>Title</th>
<th>Artist</th>
</tr>
</xsl:variable>
<xsl:template match="/">
<html>
<body>
<table border="1">
<xsl:copy-of select="$header" />
<xsl:for-each select="catalog/cd">
<tr>
<td><xsl:value-of select="title"/></td>
<td><xsl:value-of select="artist"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>