最新のWeb開発のチュートリアル
 

XSLT <xsl:with-param> Element


<完全なXSLT要素のリファレンス

定義と使用法

<xsl:with-param>要素は、テンプレートに渡されるパラメータの値を定義します。

Note:値nameの属性<xsl:with-param>中の名前と一致しなければなりません<xsl:param>要素を(the <xsl:with-param> element is ignored if there is no match)

Note: <xsl:with-param>要素を内許される<xsl:apply-templates><xsl:call-template>

Tip:あなたがの内容によってパラメータに値を追加することができます<xsl:with-param>要素ORでselectた属性!


構文

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

  <!-- Content:template -->

</xsl:with-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:template match="/">
  <html>
  <body>
  <xsl:for-each select="catalog/cd">
    <xsl:call-template name="show_title">
      <xsl:with-param name="title" select = "title" />
    </xsl:call-template>
  </xsl:for-each>
  </body>
  </html>
</xsl:template>

<xsl:template name = "show_title" >
  <xsl:param name = "title" />
  <p>Title: <xsl:value-of select = "$title" /></p>
</xsl:template>

</xsl:stylesheet>

<完全なXSLT要素のリファレンス