XSLT <xsl:param> 元素

定義和用法

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

注釋:如果在模板內聲明參數,就是局部參數,如果作為頂層元素來聲明,就是全局參數。

語法

<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>