Gli ultimi tutorial di sviluppo web
 

XSLT <xsl:if> Element


Il <xsl:if> elemento viene utilizzato per mettere un test condizionale contro il contenuto del file XML.


Il <xsl:if> Element

Per mettere un condizionale se il test contro il contenuto del file XML, aggiungere un <xsl:if> elemento al documento XSL.

Sintassi

<xsl:if test=" Dove mettere il <xsl:if> Element

Per aggiungere un test condizionale, aggiungere il <xsl:if> elemento all'interno del <xsl:for-each> elemento nel file XSL:

Esempio

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
  <html>
  <body>
  <h2>My CD Collection</h2>
  <table border="1">
    <tr bgcolor="#9acd32">
      <th>Title</th>
      <th>Artist</th>
      <th>Price</th>
    </tr>
    <xsl:for-each select="catalog/cd">
      <xsl:if test="price &gt; 10">
        <tr>
          <td><xsl:value-of select="title"/></td>
          <td><xsl:value-of select="artist"/></td>
          <td><xsl:value-of select="price"/></td>
        </tr>
      </xsl:if>
    </xsl:for-each>
  </table>
  </body>
  </html>
</xsl:template>

</xsl:stylesheet>
Prova tu stesso "

Note: Il valore richiesto test attributo contiene l'espressione da valutare.

Il codice di cui sopra sarà solo in uscita gli elementi titolo e artista del CD che ha un prezzo che è superiore a 10.