最新的Web开发教程
 

XSLT <xsl:for-each> Element


<XSLT元素参考

定义和用法

所述<xsl:for-each>元素循环遍历指定节点集合的每个节点。


句法

<xsl:for-each select="expression">
  <!-- Content -->
</xsl:for-each>

属性

属性 描述
selectexpression 需要。 要被处理,指定哪个节点组的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的值表行:

<?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>Music Collection:</h1>
    <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>
试一试»

<XSLT元素参考