<XSLT元素参考
定义和用法
所述<xsl:choose>元素一起使用<xsl:when>和<xsl:otherwise>以表达多种条件的测试。
如果没有<xsl:when>为真,内容<xsl:otherwise>被处理。
如果没有<xsl:when>为真,和没有<xsl:otherwise>元素存在,则创建什么。
Tip:对于简单的条件测试,使用<xsl:if>元素代替。
句法
<xsl:choose>
<!-- Content:(xsl:when+,xsl:otherwise?) -->
</xsl:choose>
属性
没有
例子
下面的代码将添加一个粉红色的背景色的艺术家列当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">
<tr>
<td><xsl:value-of select="title"/></td>
<xsl:choose>
<xsl:when test="price > 10">
<td bgcolor="#ff00ff">
<xsl:value-of select="artist"/></td>
</xsl:when>
<xsl:otherwise>
<td><xsl:value-of select="artist"/></td>
</xsl:otherwise>
</xsl:choose>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
试一试» 声明一个变量名为"color" 。 它的值设置为color当前元素的属性。 如果当前元素没有color属性,值"color"将是"green" :
<xsl:variable name="color">
<xsl:choose>
<xsl:when test="@color">
<xsl:value-of select="@color"/>
</xsl:when>
<xsl:otherwise>green</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<XSLT元素参考