codecamp

XSLT <xsl:variable> 元素

XSLT <xsl:variable> 元素

XSLT <xsl:variable> 元素可以用来声明变量,具体使用请参考本节内容。


XSLT 元素参考手册 完整的 XSLT 元素参考手册

定义和用法

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

注意:如果作为顶层元素(top-level element)来声明,就是全局变量。如果在模板内声明变量,就是局部变量。

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

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


语法

<xsl:variable
name="name"
select="expression">

<!-- Content:template -->

</xsl:variable>

属性

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

实例 1

如果设置了 select 属性,<xsl:variable> 元素就不能包含任何内容。如果 select 属性含有文字字符串,则必须给字符串加引号。下面的两个例子为变量 "color" 赋值 "red":

<xsl:variable name="color" select="'red'" />

<xsl:variable name="color" select='"red"' />

实例 2

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

<xsl:variable name="j" />

实例 3

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

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

<xsl:variable name="header">
<tr>
<th>Element</th>
<th>Description</th>
</tr>
</xsl:variable>

<xsl:template match="/">
<html>
<body>
<table>
<xsl:copy-of select="$header" />
<xsl:for-each select="reference/record">
<tr>
<xsl:if category="XML">
<td><xsl:value-of select="element"/></td>
<td><xsl:value-of select="description"/></td>
</xsl:if>
</tr>
</xsl:for-each>
</table>
<br />
<table>
<xsl:copy-of select="$header" />
<xsl:for-each select="table/record">
<tr>
<xsl:if category="XSL">
<td><xsl:value-of select="element"/></td>
<td><xsl:value-of select="description"/></td>
</xsl:if>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>

</xsl:stylesheet>

XSLT 元素参考手册 完整的 XSLT 元素参考手册
XSLT <xsl:value-of> 元素
XSLT <xsl:when> 元素
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }