1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
   | <xsl:for-each select="/ROOT/LISTE/N1">
   <img src="Nv1.jpg" />
   <xsl:element  name="a">
      <xsl:attribute name="HREF">#</xsl:attribute>
      <xsl:attribute name="nom">
          <xsl:value-of select="@L" />
      </xsl:attribute>
      <xsl:attribute name="onClick">
           affichageEnCours(<xsl:value-of select="@ID" />,this.nom);
      </xsl:attribute>
     <xsl:value-of select="@L"/>
   </xsl:element>
 
      <xsl:for-each select="./N2">
          <img src="Nv2.jpg" />
          <xsl:element  name="a">
                  <xsl:attribute name="HREF">#</xsl:attribute>
                  <xsl:attribute name="nom">
                    <xsl:value-of select="@L" />
                  </xsl:attribute>
                  <xsl:attribute name="onClick">
                     affichageEnCours(<xsl:value-of select="@ID" />,this.nom);
                  </xsl:attribute>
               <xsl:value-of select="@L"/>
          </xsl:element>
 
              <xsl:for-each select="./N3">
                   <img src="Nv3.jpg" />
                   <xsl:element  name="a">
                        <xsl:attribute name="HREF">#</xsl:attribute>
                        <xsl:attribute name="nom">
                            <xsl:value-of select="@L" />
                        </xsl:attribute>
                        <xsl:attribute name="onClick">
                             affichageEnCours(<xsl:value-of select="@ID" />,this.nom);
                        </xsl:attribute>
                     <xsl:value-of select="@L"/>
                   </xsl:element>
              </xsl:for-each>
      </xsl:for-each>
</xsl:for-each> | 
Partager