XSLT <xsl:if> 元素
只有當(dāng)某個給定的條件滿足時,才能夠使用 XSLT <xsl:if> 元素中的模板!
XSLT 元素參考手冊
定義和用法
<xsl:if> 元素包含了一個模板,只有指定的條件成立時,才應(yīng)用此模板。
提示:請把 <xsl:choose> 與 <xsl:when> 和 <xsl:otherwise> 協(xié)同使用來表達(dá)多重條件測試!
語法
<xsl:if
test="expression">
<!-- Content: template -->
</xsl:if>
屬性
屬性 | 值 | 描述 |
test | expression | 必需。規(guī)定要測試的條件。 |
實(shí)例
當(dāng) CD 的價格高于 10 時,選取 title 和 artist 的值:
實(shí)例 1
<?xml version="1.0" encoding="ISO-8859-1"?>
<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 的標(biāo)題。如果不是最后一個或倒數(shù)第二個 CD,則在每個 CD-title 間插入 ", "。如果是最后一個 CD,則在標(biāo)題后添加 "!"。如果是倒數(shù)第二個 CD,則在標(biāo)題后添加 ", and ":
實(shí)例 2
<?xml version="1.0" encoding="ISO-8859-1"?>
<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 元素參考手冊
更多建議: