Latest web development tutorials

XSLT <xsl:if> 元素

XSLT 元素參考手冊 XSLT元素參考手冊

定義和用法

<xsl:if> 元素包含了一個模板,只有指定的條件成立時,才應用此模板。

提示:請把<xsl:choose>與<xsl:when>和<xsl:otherwise>協同使用來表達多重條件測試!


語法

<xsl:if
test="expression">

<!-- Content: template -->

</xsl:if>

屬性

属性 描述
test expression 必需。规定要测试的条件。


實例

當CD 的價格高於10 時,選取title 和artist 的值:

實例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 &gt; 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-title 間插入", "。 如果是最後一個CD,則在標題後添加"!"。 如果是倒數第二個CD,則在標題後添加", and ":

實例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 元素參考手冊 XSLT元素參考手冊