<XSLT要素のリファレンス
定義と使用法
<xsl:if>要素が指定した条件がtrueの場合にのみ適用されるテンプレートが含まれています。
Tip:使用し<xsl:choose>と連動して<xsl:when>と<xsl:otherwise>複数条件テストを表現するために!
構文
<xsl:if
test="expression">
<!-- Content: template -->
</xsl:if>
属性
属性 | 値 | 説明 |
---|---|---|
test | expression | 必須。 条件をテストすることを指定します |
例
CDの価格が10より高い場合は、タイトルとアーティストの値を選択します。
例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>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のタイトルを表示します。 挿入", "それは最後のCDまたは最後が、1つでない場合は、各CD-タイトルの間。 それが最後のCDであれば、追加"!" タイトルの背後にあります。 それは最後のが、1枚のCDであれば、追加", and "タイトルの後ろに:
例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>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要素のリファレンス