عنصر <xsl:for-each> در XSLT

تعریف و استفاده

عنصر <xsl:for-each> می‌تواند بر روی هر نود در مجموعه‌ای از نودها مرور کند.

نحوه‌ی استفاده

<xsl:for-each
select="عبارت">
  <!-- Content:(xsl:sort*,template) -->
</xsl:for-each>

ویژگی

ویژگی مقدار توضیح
select عبارت ضروری. مجموعه‌ای از نودهایی که پردازش می‌شوند.

مثال

مثال 1

تدوام مرور بر روی هر عنصر "cd" و استفاده از <xsl:value-of> برای نوشتن هر عنوان و هنرمند به خروجی:

<?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> برای نوشتن هر عنوان و هنرمند به خروجی (با مرتب‌سازی بر اساس هنرمند):

<?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 را مشاهده کنید,نتیجه را مشاهده کنید.