XSLT <xsl:with-param> 元素

2018-02-12 17:48 更新

XSLT <xsl:with-param> 元素

XSLT 中傳遞給模板的參數(shù)的值在 <xsl:with-param> 元素中定義。


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

定義和用法

<xsl:with-param> 元素定義了傳遞給模板的參數(shù)的值。

注意:<xsl:with-param> 元素的 name 屬性的值必須與 <xsl:param> 元素中的 name 相匹配,否則將忽略 <xsl:with-param> 元素。

注意:<xsl:apply-templates><xsl:call-template> 中均允許使用 <xsl:with-param> 元素。

提示:您可以通過 <xsl:with-param> 元素的內(nèi)容或通過 select 屬性,來為參數(shù)賦值!


語法

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

<!-- Content:template -->

</xsl:with-param>

屬性

屬性 描述
name name 必需。規(guī)定參數(shù)的名稱。
select expression 可選。定義參數(shù)的值的 XPath 表達(dá)式。

實(shí)例 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

公眾號
微信公眾號

編程獅公眾號