องค์ประกอบ <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>