XSLT 元素概述

大雄45發表於2022-07-05
導讀 <xsl:if>元素用於放置針對 XML 檔案內容的條件測試。

XSLT <1111xsl:if> 元素概述XSLT<1111xsl:if>元素概述

<xsl:if>元素

如需放置針對 XML 檔案內容的條件測試,請向 XSL 文件新增 <xsl:if> 元素。

語法
<xsl:if test="expression">
...如果條件成立則輸出...
</xsl:if>
在何處放置 <xsl:if> 元素

如需新增有條件的測試,請在 XSL 檔案中的 <xsl:for-each> 元素內部新增 <xsl:if> 元素:

例項

<?xml version="1.0" encoding="UTF-8"?><xsl:stylesheet version="1.0"xmlns:xsl="
 <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>

注意:必需的 test 屬性的值包含了需要求值的表示式。

上面的程式碼僅僅會輸出價格高於 10 的 CD 的 title 和 artist 元素。

原文來自:


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69955379/viewspace-2904236/,如需轉載,請註明出處,否則將追究法律責任。

相關文章