องค์ประกอบ <xsl:for-each> ของ XSLT

การระบุและการใช้งาน

<xsl:for-each> อิเลิมสามารถลูกเล่นประมวลผลแต่ละของโหมดในกลุ่มของโหมดที่กำหนดไว้。

ระบบทางภาษา

<xsl:for-each
select="expression">
  <!-- Content:(xsl:sort*,template) -->
</xsl:for-each>

แอตทริบิวต์

แอตทริบิวต์ ค่า การอธิบาย
select expression ว่าง

ตัวอย่าง

ตัวอย่าง 1

ลูกเล่นประมวลผลแต่ละ "cd" อิเลิม และใช้ <xsl:value-of> เขียนแต่ละ title และ artist ลงในออกที่:

<?xml version="1.0" encoding="ISO-8859-1"?>
<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>

查看 XML 文件查看 XSL 文件查看結果

ตัวอย่าง 2

ลูกเล่นประมวลผลแต่ละ "cd" อิเลิม และใช้ <xsl:value-of> เขียนแต่ละ title และ artist ลงในออกที่ (เรียงตาม artist):

<?xml version="1.0" encoding="ISO-8859-1"?>
<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">
      <xsl:sort select="artist"/>
      <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>

查看 XML 文件查看 XSL 文件查看結果