Latest web development tutorials

XSLT <xsl:if> 元素

<xsl:if> 元素用於放置針對XML 文件內容的條件測試。


<xsl:if> 元素

如需放置針對XML 文件內容的條件測試,請向XSL 文檔添加<xsl:if> 元素。

語法

<xsl:if test="expression">
...如果条件成立则输出...
</xsl:if>


在何處放置<xsl:if> 元素

如需添加有條件的測試,請在XSL 文件中的<xsl:for-each> 元素內部添加<xsl:if> 元素:

實例

<?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>

嘗試一下»

注意:必需的test屬性的值包含了需要求值的表達式。

上面的代碼僅僅會輸出價格高於10 的CD 的title 和artist 元素。