最新的Web開發教程
 

XSLT <xsl:param> Element


<完整XSLT元素參考

定義和用法

所述<xsl:param>元素被用來聲明局部或全局參數。

Note:如果它是一個模板內聲明的參數是全球性的,如果它被聲明為頂級元素,以及地方政府。


句法

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

  <!-- Content:template -->

</xsl:param>

屬性

屬性 描述
namename 需要。 指定參數的名稱
selectexpression 可選的。 指定的XPath表達式,用於指定參數的默認值

實施例1

<?xml version="1.0" encoding="UTF-8"?>
<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元素參考