<XSLT元素参考
定义和用法
所述<xsl:if>元素只包含在指定条件为真,将被应用的模板。
Tip:使用<xsl:choose>结合<xsl:when>和<xsl:otherwise>来表达多重条件测试!
句法
<xsl:if
test="expression">
<!-- Content: template -->
</xsl:if>
属性
属性 | 值 | 描述 |
---|---|---|
test | expression | 需要。 指定要测试的条件 |
例子
选择标题和艺术家的值如果CD的价格高于10:
实施例1
<?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>
试一试» 显示每个CD的标题。 插入", "每个CD标题之间如果不是最后一张CD或倒数第二。 如果是最后一张CD,加上"!" 背后的称号。 如果是倒数第二个CD,增加", and "标题背后:
实施例2
<?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>
<p>Titles:
<xsl:for-each select="catalog/cd">
<xsl:value-of select="title"/>
<xsl:if test="position()!=last()">
<xsl:text>, </xsl:text>
</xsl:if>
<xsl:if test="position()=last()-1">
<xsl:text> and </xsl:text>
</xsl:if>
<xsl:if test="position()=last()">
<xsl:text>!</xsl:text>
</xsl:if>
</xsl:for-each>
</p>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
试一试» <XSLT元素参考