目录

XSLT <xsl:if> 元素


<xsl:if> 元素用于对 XML 文件的内容进行条件测试。


<xsl:if> 元素

要对 XML 文件的内容进行条件 if 测试,请将 <xsl:if> 元素添加到 XSL 文档。

语法

<xsl:if test=" expression">
  ...some output if the expression is true...
</xsl:if>

<xsl:if> 元素的放置位置

要添加条件测试,请在 XSL 文件的 <xsl:for-each> 元素内添加 <xsl:if> 元素:

示例

<?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 > 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>
亲自试一试 »

笔记:所需的值测试属性包含要计算的表达式。

上面的代码只会输出价格高于 10 的 CD 的标题和艺术家元素。