<อ้างอิงองค์ประกอบ XSLT
ความหมายและการใช้งาน
<xsl:for-each> องค์ประกอบ loops ผ่านแต่ละโหนดในชุดโหนดที่ระบุ
วากยสัมพันธ์
<xsl:for-each
select="expression">
<!-- Content -->
</xsl:for-each>
แอตทริบิวต์
คุณลักษณะ | ความคุ้มค่า | ลักษณะ |
---|---|---|
select | expression | จำเป็นต้องใช้ การแสดงออก XPath ที่ระบุโหนดกำหนดให้มีการประมวลผล |
ตัวอย่าง
ตัวอย่างด้านล่างลูปรางแต่ละองค์ประกอบ cd outputs ชื่อสำหรับแต่ละ cd:
ตัวอย่าง
<?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>
ลองตัวเอง» ตัวอย่างด้านล่างลูปรางแต่ละองค์ประกอบซีดีและสร้างแถวของตารางที่มีค่าจากชื่อและศิลปินแต่ละซีดี:
ตัวอย่าง
<?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>
ลองตัวเอง» <อ้างอิงองค์ประกอบ XSLT