Gli ultimi tutorial di sviluppo web
 

XSLT <xsl:choose> Element


Il <xsl:choose> elemento viene utilizzato in combinazione con <xsl:when> e <xsl:otherwise> di esprimere molteplici test condizionali.


Il <xsl:choose> Element

Sintassi

<xsl:choose>
  <xsl:when test=" Dove mettere il Scegli Condizione

Per inserire un test condizionale multipla contro il file XML, aggiungere il <xsl: choose>, <xsl: when> e <xsl:otherwise> elementi al 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>
    </tr>
    <xsl:for-each select="catalog/cd">
    <tr>
      <td><xsl:value-of select="title"/></td>
      <xsl:choose>
        <xsl:when test="price &gt; 10">

          <td bgcolor="#ff00ff">
          <xsl:value-of select="artist"/></td>
        </xsl:when>
        <xsl:otherwise>

          <td><xsl:value-of select="artist"/></td>
        </xsl:otherwise>
      </xsl:choose>

    </tr>
    </xsl:for-each>
  </table>
  </body>
  </html>
</xsl:template>

</xsl:stylesheet>
Prova tu stesso "

Il codice qui sopra aggiungere un colore rosa background-color al "Artist" colonna quando il prezzo del CD è superiore a 10.


Un altro esempio

Ecco un altro esempio che contiene due <xsl:when> elementi:

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>
    </tr>
    <xsl:for-each select="catalog/cd">
    <tr>
      <td><xsl:value-of select="title"/></td>
      <xsl:choose>
        <xsl:when test="price &gt; 10">

          <td bgcolor="#ff00ff">
          <xsl:value-of select="artist"/></td>
        </xsl:when>
        <xsl:when test="price &gt; 9">

          <td bgcolor="#cccccc">
          <xsl:value-of select="artist"/></td>
        </xsl:when>
        <xsl:otherwise>

          <td><xsl:value-of select="artist"/></td>
        </xsl:otherwise>
      </xsl:choose>

    </tr>
    </xsl:for-each>
  </table>
  </body>
  </html>
</xsl:template>

</xsl:stylesheet>
Prova tu stesso "

Il codice qui sopra aggiungere un colore di sfondo di colore rosa al "Artist" colonna quando il prezzo del CD è superiore a 10, e uno sfondo grigio-colore quando il prezzo del CD è superiore a 9 e minore o uguale a 10.