<อ้างอิงองค์ประกอบ XSLT
ความหมายและการใช้งาน
<xsl:if> องค์ประกอบที่มีแม่แบบที่จะนำไปใช้เพียงเมื่อเงื่อนไขที่ระบุเป็นความจริง
Tip: การใช้งาน <xsl:choose> ร่วมกับ <xsl:when> และ <xsl:otherwise> จะแสดงการทดสอบเงื่อนไขหลาย!
วากยสัมพันธ์
<xsl:if
test="expression">
<!-- Content: template -->
</xsl:if>
แอตทริบิวต์
คุณลักษณะ | ความคุ้มค่า | ลักษณะ |
---|---|---|
test | expression | จำเป็นต้องใช้ ระบุเงื่อนไขที่จะทดสอบ |
ตัวอย่าง
เลือกค่าของชื่อและศิลปินถ้าราคาของซีดีที่สูงกว่า 10:
ตัวอย่างที่ 1
<?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">
<xsl:if test="price > 10">
<tr>
<td><xsl:value-of select="title"/></td>
<td><xsl:value-of select="artist"/></td>
</tr>
</xsl:if>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
ลองตัวเอง» แสดงชื่อของแต่ละแผ่นซีดี ใส่ ", " ระหว่างแต่ละแผ่น CD-ชื่อถ้ามันไม่ได้เป็นแผ่นซีดีที่ผ่านมาหรือที่ผ่านมา แต่อย่างใดอย่างหนึ่ง ถ้ามันเป็นแผ่นซีดีที่ผ่านมาเพิ่ม "!" ที่อยู่เบื้องหลังชื่อ ถ้ามันเป็นครั้งสุดท้าย แต่ซีดีเพิ่ม ", and " อยู่เบื้องหลังชื่อ:
ตัวอย่างที่ 2
<?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>
<p>Titles:
<xsl:for-each select="catalog/cd">
<xsl:value-of select="title"/>
<xsl:if test="position()!=last()">
<xsl:text>, </xsl:text>
</xsl:if>
<xsl:if test="position()=last()-1">
<xsl:text> and </xsl:text>
</xsl:if>
<xsl:if test="position()=last()">
<xsl:text>!</xsl:text>
</xsl:if>
</xsl:for-each>
</p>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
ลองตัวเอง» <อ้างอิงองค์ประกอบ XSLT