XSLT <xsl:param> 元素

2018-02-12 17:30 更新

XSLT <xsl:param> 元素

XSLT <xsl:param> 元素聲明一個局部或者全局的參數(shù),在 <xsl:stylesheet> 元素或 <xsl:template> 元素中使用。


XSLT 元素參考手冊 完整的 XSLT 元素參考手冊

定義和用法

<xsl:param> 元素用于聲明局部或全局參數(shù)。

注意:如果作為頂層元素(top-level element)來聲明,就是全局參數(shù)。如果在模板內(nèi)聲明參數(shù),就是局部參數(shù)。


語法

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

<!-- Content:template -->

</xsl:param>

屬性

屬性 描述
name name 必需。規(guī)定參數(shù)的名稱。
select expression 可選。規(guī)定 XPath 表達(dá)式,該表達(dá)式是參數(shù)的默認(rèn)值。

實例 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 元素參考手冊
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號