<Pełna XSLT element odniesienia
Definicja i Wykorzystanie
<xsl:call-template> Element nazywa nazwie szablonu.
Składnia
<xsl:call-template name="templatename">
<!-- Content:xsl:with-param* -->
</xsl:call-template>
Atrybuty
Atrybut | Wartość | Opis |
---|---|---|
name | templatename | Wymagany. Określa nazwę szablonu na miano |
Przykład 1
Zadzwoń szablon o nazwie "description" , gdy procesor znajdzie element samochodu:
<xsl:template match="car">
<xsl:call-template name="description"/>
</xsl:template>
<Pełna XSLT element odniesienia