XSLT <xsl:apply-templates> အရာ
- အပြင်း စာကြိုး XSLT <choose>
- အောက်ဆုံး စာကြိုး XSLT ကို ကွန်ပျူတာ အဖွဲ့
<xsl:apply-templates> အအုပ်အဖွဲ့
အမည်ချက်:
<xsl:apply-templates> အအုပ်အဖွဲ့
အကြောင်းပြချက်: <xsl:apply-templates> အအုပ်အဖွဲ့ကို select ကိုရှိသော အကိုင်းအခြားကို သာလျှင် ဖြင့်ပြုလုပ်သည်။ ကျော်ကြားစွာ အကိုင်းအခြားကို ဖြင့်ပြုလုပ်ရန် select အကိုင်းအခြားကို သုံးနိုင်ပါသည်。
အောက်ပါ XSL စံပါးစာရင်းကို ကြည့်ပါ:
<?xml version="1.0" encoding="ISO-8859-1"?> <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"> အမည်: <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>
- အပြင်း စာကြိုး XSLT <choose>
- အောက်ဆုံး စာကြိုး XSLT ကို ကွန်ပျူတာ အဖွဲ့