English | >> Français << | Deutsch | Magyar | 中文 | Polski | ZVON > Tutorials > XSLT Tutorial |
Intro / Chercher / ZVON |
>> Page 70 << | Précédent | Suivant | Contenu | Index des éléments |
Source XML
<source> <AAA/> <BBB/> <CCC/> </source> Sortie
<DIV style="color:red">AAA</DIV> <DIV style="color:red">BBB</DIV> <DIV style="color:red">CCC</DIV> Vue HTML
AAA
BBB
CCC |
Feuille de style XSLT (file: id2.xsl )
<xsl:stylesheet version = '1.0'
xmlns:xsl='http://www.w3.org/1999/XSL/Transform'> <xsl:template match="/*/*"> <DIV style="color:red"> <xsl:value-of select="name()"/> </DIV> </xsl:template> </xsl:stylesheet> |
Source XML
<source> <AAA/> <BBB/> <CCC/> </source> Sortie
<EM>AAA</EM> <EM>BBB</EM> <EM>CCC</EM> Vue HTML
AAA
BBB
CCC
|
Feuille de style XSLT (file: id3.xsl )
<xsl:stylesheet version = '1.0'
xmlns:xsl='http://www.w3.org/1999/XSL/Transform'> <xsl:import href="id2.xsl"/> <xsl:template match="/*/*"> <EM> <xsl:value-of select="name()"/> </EM> </xsl:template> </xsl:stylesheet> |
Source XML
<source> <AAA/> <BBB/> <CCC/> </source> Sortie
<EM> <DIV style="color:red">AAA</DIV> </EM> <EM> <DIV style="color:red">BBB</DIV> </EM> <EM> <DIV style="color:red">CCC</DIV> </EM> Vue HTML
AAA
BBB
CCC
|
Feuille de style XSLT (file: id4.xsl )
<xsl:stylesheet version = '1.0'
xmlns:xsl='http://www.w3.org/1999/XSL/Transform'> <xsl:import href="id2.xsl"/> <xsl:template match="/*/*"> <EM> <xsl:apply-imports/> </EM> </xsl:template> </xsl:stylesheet> |
Source XML
<source> <AAA/> <BBB/> <CCC/> </source> Sortie
<EM/> <EM/> <EM/> Vue HTML
|
Feuille de style XSLT (file: id5.xsl )
<xsl:stylesheet version = '1.0'
xmlns:xsl='http://www.w3.org/1999/XSL/Transform'> <xsl:include href="id2.xsl"/> <xsl:template match="/*/*"> <EM> <xsl:apply-imports/> </EM> </xsl:template> </xsl:stylesheet> |