XSLT <xsl:choose> 元素

XSLT <xsl:choose> 元素用于结合 <xsl:when> 和 <xsl:otherwise> 来表达多重条件测试。

<xsl:choose> 元素

语法

  1. <xsl:choose>
  2. <xsl:when test="expression">
  3. ... 输出 ...
  4. </xsl:when>
  5. <xsl:otherwise>
  6. ... 输出 ....
  7. </xsl:otherwise>
  8. </xsl:choose>

在何处放置选择条件

要插入针对 XML 文件的多重条件测试,请向 XSL 文件添加 <xsl:choose>、<xsl:when> 以及 <xsl:otherwise>:

  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. <tr>
  16. <td><xsl:value-of select="title"/></td>
  17. <xsl:choose>
  18. <xsl:when test="price &gt; 10">
  19. <td bgcolor="#ff00ff">
  20. <xsl:value-of select="artist"/></td>
  21. </xsl:when>
  22. <xsl:otherwise>
  23. <td><xsl:value-of select="artist"/></td>
  24. </xsl:otherwise>
  25. </xsl:choose>
  26. </tr>
  27. </xsl:for-each>
  28. </table>
  29. </body>
  30. </html>
  31. </xsl:template>
  32.  
  33. </xsl:stylesheet>

上面的代码会在 CD 的价格高于 10 时向 "Artist" 列添加粉色的背景颜色。

上面的转换结果类似这样:

XSLT &lt;xsl:choose&gt; - 图1

另一个例子

这是另外一个包含两个 <xsl:when> 元素的例子:

  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. <tr>
  16. <td><xsl:value-of select="title"/></td>
  17. <xsl:choose>
  18. <xsl:when test="price &gt; 10">
  19. <td bgcolor="#ff00ff">
  20. <xsl:value-of select="artist"/></td>
  21. </xsl:when>
  22. <xsl:when test="price &gt; 9">
  23. <td bgcolor="#cccccc">
  24. <xsl:value-of select="artist"/></td>
  25. </xsl:when>
  26. <xsl:otherwise>
  27. <td><xsl:value-of select="artist"/></td>
  28. </xsl:otherwise>
  29. </xsl:choose>
  30. </tr>
  31. </xsl:for-each>
  32. </table>
  33. </body>
  34. </html>
  35. </xsl:template>
  36.  
  37. </xsl:stylesheet>

上面的代码会在 CD 的价格高于 10 时向 "Artist" 列添加粉色的背景颜色,并在 CD 的价格高于 9 且低于等于 10 时向 "Artist" 列添加灰色的背景颜色。

上面的转换结果类似这样:

XSLT &lt;xsl:choose&gt; - 图2