最新的Web開發教程
 

XSLT <xsl:choose> Element


<XSLT元素參考

定義和用法

所述<xsl:choose>元素一起使用<xsl:when><xsl:otherwise>以表達多種條件的測試。

如果沒有<xsl:when>為真,內容<xsl:otherwise>被處理。

如果沒有<xsl:when>為真,和沒有<xsl:otherwise>元素存在,則創建什麼。

Tip:對於簡單的條件測試,使用<xsl:if>元素代替。


句法

<xsl:choose>

  <!-- Content:(xsl:when+,xsl:otherwise?) -->

</xsl:choose>

屬性

沒有


例子

下面的代碼將添加一個粉紅色的背景色的藝術家列當CD的價格高於10。

<?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>
試一試»

聲明一個變量名為"color" 。 它的值設置為color當前元素的屬性。 如果當前元素沒有color屬性,值"color"將是"green"

<xsl:variable name="color">
  <xsl:choose>
    <xsl:when test="@color">
      <xsl:value-of select="@color"/>
    </xsl:when>
    <xsl:otherwise>green</xsl:otherwise>
  </xsl:choose>
</xsl:variable>

<XSLT元素參考