XSLT <xsl:param> 元素


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 元素參考手冊