XSL stylesheet 2<xsl:stylesheet version='1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'> |
<xsl:template match="/"> |
<xsl:apply-templates select="//CCC" mode="red"/> |
<xsl:apply-templates select="//CCC" mode="yellow"/> |
</xsl:template> |
<xsl:template match="CCC" mode="red"> |
<DIV style="color:red"> |
<xsl:value-of select="name()"/> |
<xsl:text> id=</xsl:text> |
<xsl:value-of select="@id"/> |
</DIV> |
</xsl:template> |
<xsl:template match="CCC"> |
<DIV style="color:purple"> |
<xsl:value-of select="name()"/> |
<xsl:text> id=</xsl:text> |
<xsl:value-of select="@id"/> |
</DIV> |
</xsl:template> |
</xsl:stylesheet> |