W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
<xsl:if> 元素用于放置針對 XML 文件內(nèi)容的條件測試。
<xsl:if> 元素
如需放置針對 XML 文件內(nèi)容的條件測試,請向 XSL 文檔添加 <xsl:if> 元素。
語法
...如果條件成立則輸出...
如需添加有條件的測試,請?jiān)?XSL 文件中的 <xsl:for-each> 元素內(nèi)部添加 <xsl:if> 元素:
<?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>
<th>Price</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>
<td><xsl:value-of select="price"/></td>
</tr>
</xsl:if>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
注意:必需的 test 屬性的值包含了需要求值的表達(dá)式。
上面的代碼僅僅會(huì)輸出價(jià)格高于 10 的 CD 的 title 和 artist 元素。
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: