XSLT <xsl:if> 元素

定义和用法

<xsl:if> 包含了一个模板,只有指定的条件成立时,才应用此模板。

提示:请使用 <xsl:choose> 与 <xsl:when> 和 <xsl:otherwise> 结合,来表达多重条件测试!

语法

  1. <xsl:if
  2. test="expression">
  3.  
  4. <!-- Content: template -->
  5.  
  6. </xsl:if>

属性

属性 描述
test expression 必需。规定要测试的条件。

实例

例子 1

当 CD 的价格高于 10 时,选取 title 和 artist 的值:

  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <xsl:stylesheet version="1.0"
  3. xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  4.  
  5. <xsl:template match="/">
  6. <html>
  7. <body>
  8. <h2>My CD Collection</h2>
  9. <table border="1">
  10. <tr bgcolor="#9acd32">
  11. <th>Title</th>
  12. <th>Artist</th>
  13. </tr>
  14. <xsl:for-each select="catalog/cd">
  15. <xsl:if test="price &gt; 10">
  16. <tr>
  17. <td><xsl:value-of select="title"/></td>
  18. <td><xsl:value-of select="artist"/></td>
  19. </tr>
  20. </xsl:if>
  21. </xsl:for-each>
  22. </table>
  23. </body>
  24. </html>
  25. </xsl:template>
  26.  
  27. </xsl:stylesheet>

例子 2

显示每个 CD 的标题。如果不是最后一个或倒数第二个 CD,则在每个 CD-title 间插入 ", "。如果是最后一个 CD,则在标题后添加 "!"。如果是倒数第二个 CD,则在其后添加 ", and ":

  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <xsl:stylesheet version="1.0"
  3. xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  4.  
  5. <xsl:template match="/">
  6. <html>
  7. <body>
  8. <h2>My CD Collection</h2>
  9. <p>Titles:
  10. <xsl:for-each select="catalog/cd">
  11. <xsl:value-of select="title"/>
  12. <xsl:if test="position()!=last()">
  13. <xsl:text>, </xsl:text>
  14. </xsl:if>
  15. <xsl:if test="position()=last()-1">
  16. <xsl:text> and </xsl:text>
  17. </xsl:if>
  18. <xsl:if test="position()=last()">
  19. <xsl:text>!</xsl:text>
  20. </xsl:if>
  21. </xsl:for-each>
  22. </p>
  23. </body>
  24. </html>
  25. </xsl:template>
  26.  
  27. </xsl:stylesheet>