English | >> Français << | Deutsch | Magyar | 中文 | Polski ZVON > Tutorials > XSLT Tutorial
>> Page 13 << | Précédent | Suivant | Contenu | Index des éléments

Les attributs peuvent être traités de la même manière que les éléments.

Feuille de style XSLT 1

Source XML
<source>

<employee id="js0034"> Joe Smith </employee>

</source>

Sortie
Joe Smith
[<b>
  <i>js0034</i>
</b>]

Vue HTML
Joe Smith [ js0034 ]
Feuille de style XSLT
<xsl:stylesheet version = '1.0'
     xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<xsl:template match="employee">
     <xsl:value-of select="."/>
     <xsl:text>[</xsl:text>
     <xsl:apply-templates select="@id"/>
     <xsl:text>]</xsl:text>
</xsl:template>

<xsl:template match="@id">
     <b>
          <i>
               <xsl:value-of select="."/>
          </i>
     </b>
</xsl:template>


</xsl:stylesheet>