XSLT <xsl:if>

  • 定义

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

    要针对 XML 文件的内容进行条件 if 测试,请在XSL文档中添加 <xsl:if> 元素。
    <xsl:if test="expression">
    ...如果表达式为真,则输出...
    </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>我的CD收藏</h2>
        <table border="1">
          <tr bgcolor="#9acd32">
            <th>名称</th>
            <th>艺术家</th>
            <th>价格</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的标题和艺术家元素。