所述<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>
试一试» Note:所述的值select属性是XPath表达式。 XPath表达式就像导航文件系统; 其中正斜杠(/)选择子目录。
过滤输出
我们还可以通过添加一个标准的过滤从XML文件中的输出select在属性<xsl:for-each>元素。
<xsl:for-each select="catalog/cd[artist='Bob Dylan']">
法律滤波运算符是:
- =(等于)
- != (not equal)
- &LT; 少于
- &GT; 比...更棒
看看调整的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>
试一试»