<xsl:apply-templates> eleman akım elemana veya geçerli elementin alt düğümleri için bir şablon uygular.
<xsl:apply-templates> Eleman
<xsl:apply-templates> eleman akım elemana veya geçerli elementin alt düğümleri için bir şablon uygular.
Biz bir seçme niteliği eklerseniz <xsl:apply-templates> eleman bunun değerine eşit tek çocuğu elemanını işleyecek bağlıyor. Biz kullanabilirsiniz select çocuk düğümleri işlenir sırayı belirtmek için özellik.
Aşağıdaki XSL stil sayfası bak:
Örnek
<?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>
<h2>My CD Collection</h2>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
<xsl:template match="cd">
<p>
<xsl:apply-templates select="title"/>
<xsl:apply-templates select="artist"/>
</p>
</xsl:template>
<xsl:template match="title">
Title: <span style="color:#ff0000">
<xsl:value-of select="."/></span>
<br />
</xsl:template>
<xsl:template match="artist">
Artist: <span style="color:#00ff00">
<xsl:value-of select="."/></span>
<br />
</xsl:template>
</xsl:stylesheet>
Kendin dene "