Najnowsze tutoriale tworzenie stron internetowych
 

XSLT <xsl:choose> Element


<xsl:choose> element jest stosowany w połączeniu z <xsl:when> i <xsl:otherwise> wyrażają wiele testy warunkowe.


<xsl:choose> Element

Składnia

<xsl:choose>
  <xsl:when test=" Gdzie umieścić Wybierz warunek

Aby wstawić test wielokrotnego warunkową przeciwko pliku XML, należy dodać <xsl: choose>, <xsl: when> i <xsl:otherwise> elementy do pliku XSL:

Przykład

<?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>
Spróbuj sam "

Powyższy kod doda pink background-color do "Artist" kolumny, gdy cena jest wyższa niż CD 10.


Inny przykład

Oto kolejny przykład, który zawiera dwa <xsl:when> elementy:

Przykład

<?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>
Spróbuj sam "

Powyższy kod doda różowy kolor tła do "Artist" kolumny, gdy cena jest wyższa niż CD 10, a szary kolor tła, gdy cena jest wyższa niż CD 9 i niższa lub równa 10.