目录

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>
亲自试一试 »

笔记:的值选择属性是一个 XPath 表达式。 XPath 表达式的工作方式类似于导航文件系统;其中正斜杠 (/) 选择子目录。



过滤输出

我们还可以通过向 <xsl:for-each> 元素中的 select 属性添加条件来过滤 XML 文件的输出。

<xsl:for-each select="catalog/cd[artist='Bob Dylan']">

合法的过滤器运算符是:

  • =(等于)
  • !=(不等于)
  • &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>
亲自试一试 »