و <xsl:if> يستخدم عنصر لوضع الاختبار الشرطي ضد محتويات ملف XML.
و <xsl:if> العنصر
لوضع مشروط إذا اختبار ضد محتويات ملف XML، إضافة إلى <xsl:if> العنصر إلى وثيقة XSL.
بناء الجملة
<xsl:if test=" أين وضع <xsl:if> العنصر لإضافة الاختبار الشرطي، إضافة <xsl:if> العنصر داخل <xsl:for-each> عنصر في ملف 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>
<th>Price</th>
</tr>
<xsl:for-each select="catalog/cd">
<xsl:if test="price > 10">
<tr>
<td><xsl:value-of select="title"/></td>
<td><xsl:value-of select="artist"/></td>
<td><xsl:value-of select="price"/></td>
</tr>
</xsl:if>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
انها محاولة لنفسك » Note: قيمة المطلوبة test السمة تحتوي على التعبير المراد تقييمها.
رمز سوف فوق الانتاج فقط العنوان والفنان عناصر من الأقراص المدمجة التي تحتوي على سعر أعلى من 10.