Ultimele tutoriale de dezvoltare web
 

XSLT <xsl:choose> Element


<xsl:choose> element este utilizat în conjuncție cu <xsl:when> și <xsl:otherwise> pentru a exprima teste multiple condiționate.


<xsl:choose> Element

Sintaxă

<xsl:choose>
  <xsl:when test=" În cazul în care pentru a pune Choose Condiție

Pentru a introduce un test condiționat multiple împotriva fișierului XML, adăugați <xsl: alegeți>, <xsl: atunci când> și <xsl:otherwise> în <xsl:otherwise> elemente la fișierul XSL:

Exemplu

<?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>
Încearcă - l singur »

Codul de mai sus se va adăuga un roz culoare de fundal la "Artist" coloana atunci când prețul CD - ul este mai mare de 10.


Alt exemplu

Aici este un alt exemplu care conține două <xsl:when> elemente:

Exemplu

<?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>
Încearcă - l singur »

Codul de mai sus se va adăuga o culoare de fundal roz la "Artist" coloana când prețul CD - ului este mai mare de 10, și un gri culoare de fundal atunci când prețul CD - ului este mai mare de 9 și mai mică sau egală cu 10.