codecamp

XSLT <xsl:param> 元素

XSLT <xsl:param> 元素

XSLT <xsl:param> 元素声明一个局部或者全局的参数,在 <xsl:stylesheet> 元素或 <xsl:template> 元素中使用。


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

定义和用法

<xsl:param> 元素用于声明局部或全局参数。

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


语法

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

<!-- Content:template -->

</xsl:param>

属性

属性 描述
name name 必需。规定参数的名称。
select expression 可选。规定 XPath 表达式,该表达式是参数的默认值。

实例 1

<?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="xx">
<html>
<body>
<xsl:call-template name="show_title">
<xsl:with-param name="title" />
</xsl:call-template>
</body>
</html>
</xsl:variable>

<xsl:template name="show_title" match="/">
<xsl:param name="title" />
<xsl:for-each select="catalog/cd">
<p>Title: <xsl:value-of select="$title" /></p>
</xsl:for-each>
</xsl:template>

</xsl:stylesheet>

XSLT 元素参考手册 完整的 XSLT 元素参考手册
XSLT <xsl:output> 元素
XSLT <xsl:preserve-space> 和 <xsl:strip-space> 元素
温馨提示
下载编程狮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; }