tutorial pengembangan web terbaru
 

XSLT <xsl:for-each> Element


<XSLT Elemen Referensi

Definisi dan Penggunaan

The <xsl:for-each> elemen loop melalui setiap node dalam node set tertentu.


Sintaksis

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

atribut

Atribut Nilai Deskripsi
selectexpression Wajib. Sebuah ekspresi XPath yang menentukan simpul set untuk diproses.

contoh

Contoh di bawah loop palung setiap elemen cd output judul untuk setiap cd:

Contoh

<?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>
Cobalah sendiri "

Contoh di bawah loop palung setiap cd elemen dan menciptakan baris tabel dengan nilai-nilai dari judul dan artis untuk setiap cd:

Contoh

<?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>
Cobalah sendiri "

<XSLT Elemen Referensi