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

XSLT <xsl:call-template> Element


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

定義と使用法

<xsl:call-template>要素は、指定されたテンプレートを呼び出します。


構文

<xsl:call-template name="templatename">

  <!-- Content:xsl:with-param* -->

</xsl:call-template>

属性

属性 説明
nametemplatename 必須。 テンプレートの名前が呼ばれるように指定します

例1

名前のテンプレートを呼び出し"description"プロセッサは、車の要素を発見したとき:

<xsl:template match="car">
  <xsl:call-template name="description"/>
</xsl:template>

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