ایکس ایس ایل تی <xsl:for-each> علامت

ਵਿਆਖਿਆ ਅਤੇ ਵਰਤੋਂ

<xsl:for-each> ਈਲੀਮੈਂਟ ਨਾਮਜ਼ਦ ਨੋਡ ਸੈੱਟ ਵਿੱਚ ਹਰ ਇੱਕ ਨੋਡ ਨੂੰ ਗਾਇਰ ਕਰ ਸਕਦਾ ਹੈ。

ਵਿਵਹਾਰ

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

ਵਿਸ਼ੇਸ਼ਤਾ

ਵਿਸ਼ੇਸ਼ਤਾ ਮੁੱਲ ਵਰਣਨ
select expression ਲਾਜ਼ਮੀ। ਹੱਲ ਕੀਤੇ ਗਏ ਨੋਡ ਸੈੱਟ।

ਉਦਾਹਰਣ

ਉਦਾਹਰਣ 1

ਹਰ ਇੱਕ "cd" ਈਲੀਮੈਂਟ ਦੀ ਸਰਕਰ ਕਰੋ ਅਤੇ ਹਰ ਇੱਕ 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>

ایکس ایم ال فائل دیکھیں،ایکس ایس ایل فائل دیکھیں،نتیجہ دیکھیں

ਉਦਾਹਰਣ 2

ਮੁੱਲਾਂ ਹਰ ਇੱਕ "cd" ਈਲੀਮੈਂਟ ਦੀ ਸਰਕਰ ਕਰੋ ਅਤੇ ਹਰ ਇੱਕ 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>

ایکس ایم ال فائل دیکھیں،ایکس ایس ایل فائل دیکھیں،نتیجہ دیکھیں