و <xsl:for-each> عنصر يسمح لك أن تفعل حلقات في XSLT.
و <xsl:for-each> العنصر
وXSL <xsl:for-each> عنصر يمكن أن تستخدم لتحديد كل عنصر XML من عقدة مجموعة محددة:
مثال
<?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>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>
انها محاولة لنفسك » Note: قيمة select السمة هي تعبير XPath. تعبير XPath يعمل مثل التنقل في نظام الملفات. حيث خط مائل (/) يختار الدلائل.
تصفية الإخراج
يمكننا أيضا تصفية الإخراج من ملف XML من خلال إضافة معيار ل select سمة في <xsl:for-each> العنصر.
<xsl:for-each select="catalog/cd[artist='Bob Dylan']">
مشغلي مرشح القانونية هي:
- = (يساوي)
- ! = (not equal)
- العلامة & lt؛ أقل من
- وGT. أكثر من
نلقي نظرة على ورقة أنماط 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>My CD Collection</h2>
<table border="1">
<tr bgcolor="#9acd32">
<th>Title</th>
<th>Artist</th>
</tr>
<xsl:for-each select="catalog/cd[artist='Bob Dylan']">
<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>
انها محاولة لنفسك »