XSLT <xsl:if> 元素

  • 定义和使用

    <xsl:if> 元素包含仅当指定条件为true时才应用的模板。
    提示:使用 <xsl:choose> 与 <xsl:when> 以及 >xsl:otherwise> 来表达多个条件测试!
  • 语法

    <xsl:if test="expression">
      <!-- Content: template -->
    </xsl:if>
    
  • 参数

    属性 描述
    test expression 必选的,指定要测试的条件
  • 示例

    如果 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">
            <xsl:if test="price > 10">
              <tr>
                <td><xsl:value-of select="title"/></td>
                <td><xsl:value-of select="artist"/></td>
              </tr>
            </xsl:if>
            </xsl:for-each>
          </table>
        </body>
        </html>
      </xsl:template>
      
    </xsl:stylesheet>