最新的Web開發教程
 

XSLT <xsl:if> Element


所述<xsl:if>元件是用來放條件測試針對XML文件的內容。


所述<xsl:if>

把一個條件,如果針對XML文件的內容的測試中,添加<xsl:if>元素的XSL文檔。

句法

<xsl:if test=" 放在哪裡<xsl:if>元素

要添加條件測試,添加<xsl:if>內部元件的<xsl:for-each> XSL文件中的元素:

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

Note:所需的值test屬性包含要被評估的表達。

上面的代碼將只輸出具有價格是大於10的CD的標題和藝術家的元件。