최신 웹 개발 튜토리얼
 

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 요소 참조