XSLT <xsl:if>
❮ XSLT 元素参考
定义和用法
<xsl:if> 元素包含一个模板,该模板只有在指定的条件为真时才会应用。
提示:使用 <xsl:choose> 与 <xsl:when> 和 <xsl:otherwise> 结合使用来表达多个条件测试!
语法
<xsl:if
test="表达式">
<!-- 内容:模板 -->
</xsl:if>
属性
属性 | 值 | 描述 |
---|---|---|
test | 表达式 | 必需。指定要测试的条件 |
示例
如果 CD 的价格高于 10,则选择 title 和 artist 的值
示例 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>我的 CD 收集</h2>
<table border="1">
<tr bgcolor="#9acd32">
<th>标题</th>
<th>艺术家</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,则在标题后面添加“,和”。
示例 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>我的 CD 收集</h2>
<p>标题
<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 元素参考