所述<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>
試一試»