<สมบูรณ์ XSLT ธาตุอ้างอิง
ความหมายและการใช้งาน
<xsl:call-template> องค์ประกอบเรียกชื่อแม่แบบ
วากยสัมพันธ์
<xsl:call-template name="templatename">
<!-- Content:xsl:with-param* -->
</xsl:call-template>
แอตทริบิวต์
คุณลักษณะ | ความคุ้มค่า | ลักษณะ |
---|---|---|
name | templatename | จำเป็นต้องใช้ ระบุชื่อของแม่ที่จะเรียกว่า |
ตัวอย่างที่ 1
เรียกแม่แบบที่ชื่อ "description" เมื่อประมวลผลพบว่าองค์ประกอบรถ:
<xsl:template match="car">
<xsl:call-template name="description"/>
</xsl:template>
<สมบูรณ์ XSLT ธาตุอ้างอิง