XSLT <xsl:for-each> 元素
<xsl:for-each> 元素允许您在XSLT中执行循环。
<xsl:for-each> 元素
XSL <xsl:for-each> 元素可用于选择指定节点集的每个XML元素:
实例
<?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">
<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>
尝试一下 »
注释: select 属性的值是一个XPath表达式。XPath表达式的工作原理类似于导航文件系统;其中正斜杠(/)选择子目录。
过滤输出
我们还可以通过向中的select属性添加一个条件来过滤XML文件的输出<xsl:for-each>元素。
<xsl:for-each select="catalog/cd[artist='Bob Dylan']">
合法的筛选器运算符是:
- = (equal)
- != (not equal)
- < less than
- > greater than
请看一下调整后的XSL样式表:
实例
<?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[artist='Bob Dylan']">
<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>
尝试一下 »