<XSLT要素のリファレンス
定義と使用法
<xsl:for-each>要素は、指定されたノードセット内の各ノードをループ。
構文
<xsl:for-each
select="expression">
<!-- Content -->
</xsl:for-each>
属性
属性 | 値 | 説明 |
---|---|---|
select | expression | 必須。 処理されるように設定されているノードを指定するXPath式。 |
例
ループ以下の例では、各CD要素が各CDのタイトルを出力する谷。
例
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<div>
<xsl:for-each select="catalog/cd">
<p><xsl:value-of select="title" /></p>
</xsl:for-each>
</div>
</xsl:template>
</xsl:stylesheet>
»それを自分で試してみてください ループ以下の例では、各CD要素トラフと各CDのタイトルやアーティストからの値でテーブルの行を作成します。
例
<?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>
<h1>Music Collection:</h1>
<table border="1">
<tr bgcolor="#9acd32">
<th>Title</th>
<th>Artist</th>
</tr>
<xsl:for-each select="catalog/cd">
<tr>
<td><xsl:value-of select="title"
/></td>
<td><xsl:value-of select="artist"
/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
»それを自分で試してみてください <XSLT要素のリファレンス