English | >> Français << | Deutsch | Magyar | 中文 | Polski | ZVON > Tutorials > XSLT Tutorial |
Intro / Chercher / ZVON |
>> Page 12 << | Précédent | Suivant | Contenu | Index des éléments |
Source XML
<source> <dog name="Joe"> <data weight="18 kg" color="black"/> </dog> </source> Sortie
<p> <b>Dog: </b>Joe</p> <p> <b>Color: </b>black</p> Vue HTML
Dog: Joe Color: black |
Feuille de style XSLT
<xsl:stylesheet version = '1.0'
xmlns:xsl='http://www.w3.org/1999/XSL/Transform'> <xsl:template match="dog"> <p> <b> <xsl:text>Dog: </xsl:text> </b> <xsl:value-of select="@name"/> </p> <p> <b> <xsl:text>Color: </xsl:text> </b> <xsl:value-of select="data/@color"/> </p> </xsl:template> </xsl:stylesheet> |