XSLT <สำหรับ - แต่ละคน>
แท็ก <xsl: for-each> ใช้เทมเพลตซ้ำสำหรับแต่ละโหนด
คำประกาศ
ต่อไปนี้คือการประกาศไวยากรณ์ของ <xsl:for-each> ธาตุ
<xsl:for-each
   select = Expression >  
</xsl:for-each> 
    คุณลักษณะ
| ซีเนียร์ No | ชื่อและคำอธิบาย | 
|---|---|
| 1 | Select XPath Expression ที่จะประเมินในบริบทปัจจุบันเพื่อกำหนดชุดของโหนดที่จะทำซ้ำ  |  
      
องค์ประกอบ
| จำนวนครั้งที่เกิดขึ้น | ไม่ จำกัด | 
|---|---|
Parent elements  |  
       xsl: attribute, xsl: comment, xsl: copy, xsl: element, xsl: fallback, xsl: foreach, xsl: if, xsl: message, xsl: มิฉะนั้น xsl: param, xsl: processinginstruction, xsl: template, xsl: ตัวแปร, xsl: เมื่อ, xsl: with-param, องค์ประกอบเอาต์พุต  |  
      
Child elements  |  
       xsl: apply-imports, xsl: apply-templates, xsl: attribute, xsl: call-template, xsl: choose, xsl: comment, xsl: copy, xsl: copy-of, xsl: element, xsl: fallback, xsl: สำหรับแต่ละ xsl: if, xsl: message, xsl: number, xsl: processing-instruction, xsl: sort, xsl: text, xsl: value-of, xsl: variable  |  
      
ตัวอย่างการสาธิต
ตัวอย่างนี้สร้างตารางขององค์ประกอบ <student> ที่มีแอตทริบิวต์ rollno และลูกของมัน <firstname>,<lastname> <nickname> และ <marks> โดยวนซ้ำนักเรียนแต่ละคน
students.xml
<?xml version = "1.0"?> 
<?xml-stylesheet type = "text/xsl" href = "students.xsl"?> 
<class> 
   <student rollno = "393"> 
      <firstname>Dinkar</firstname> 
      <lastname>Kad</lastname> 
      <nickname>Dinkar</nickname> 
      <marks>85</marks> 
   </student> 
   <student rollno = "493"> 
      <firstname>Vaneet</firstname> 
      <lastname>Gupta</lastname> 
      <nickname>Vinni</nickname> 
      <marks>95</marks> 
   </student> 
   <student rollno = "593"> 
      <firstname>Jasvir</firstname> 
      <lastname>Singh</lastname> 
      <nickname>Jazz</nickname> 
      <marks>90</marks> 
   </student> 
</class> 
    students.xsl
<?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> 
            <h2>Students</h2> 
            <table border = "1"> 
               <tr bgcolor = "#9acd32"> 
                  <th>Roll No</th> 
                  <th>First Name</th> 
                  <th>Last Name</th> 
                  <th>Nick Name</th> 
                  <th>Marks</th> 
               </tr> 
					
               <xsl:for-each select = "class/student"> 
					
                  <tr> 
                     <td><xsl:value-of select = "@rollno"/></td> 
                     <td><xsl:value-of select = "firstname"/></td> 
                     <td><xsl:value-of select = "lastname"/></td> 
                     <td><xsl:value-of select = "nickname"/></td> 
                     <td><xsl:value-of select = "marks"/></td> 
                  </tr> 
               </xsl:for-each> 
					
            </table> 
         </body> 
      </html> 
   </xsl:template>  
</xsl:stylesheet> 
    เอาต์พุต