XSLT <xsl:for-each>
❮ XSLT 元素参考
定义和用法
<xsl:for-each> 元素循环遍历指定节点集中的每个节点。
语法
<xsl:for-each select="表达式">
<!-- 内容 -->
</xsl:for-each>
属性
属性 | 值 | 描述 |
---|---|---|
select | 表达式 | 必填。指定要处理的节点集的 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 创建一个包含 title 和 artist 值的表格行。
示例
<?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>音乐收藏:</h1>
<table border="1">
<tr bgcolor="#9acd32">
<th>标题</th>
<th>艺术家</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 元素参考