<xsl:choose> öğesi ile birlikte kullanılır <xsl:when> ve <xsl:otherwise> Birden koşullu testleri ifade etmek.
<xsl:choose> Eleman
Sözdizimi
<xsl:choose>
<xsl:when test=" Nerede Koşulu Seç koymak XML dosyası karşı çoklu koşul testi eklemek için eklemek <xsl: choose>, <xsl: when> ve <xsl:otherwise> XSL dosyasına elemanlar:
Örnek
<?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>
<xsl:choose>
<xsl:when test="price > 10">
<td bgcolor="#ff00ff">
<xsl:value-of select="artist"/></td>
</xsl:when>
<xsl:otherwise>
<td><xsl:value-of select="artist"/></td>
</xsl:otherwise>
</xsl:choose>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
Kendin dene " Yukarıdaki kod için pembe bir arka plan-renk katacak "Artist" CD'nin fiyatı 10'dan yüksekse ZAMAN sütununda.
Başka bir örnek
İşte içeren başka örnektir iki <xsl:when> elemanlar:
Örnek
<?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>
<xsl:choose>
<xsl:when test="price > 10">
<td bgcolor="#ff00ff">
<xsl:value-of select="artist"/></td>
</xsl:when>
<xsl:when test="price > 9">
<td bgcolor="#cccccc">
<xsl:value-of select="artist"/></td>
</xsl:when>
<xsl:otherwise>
<td><xsl:value-of select="artist"/></td>
</xsl:otherwise>
</xsl:choose>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
Kendin dene " Yukarıdaki kod için pembe bir arka plan rengi katacak "Artist" CD'nin fiyatı 9 daha yüksek ve daha düşük veya 10'a eşittir ZAMAN CD'nin fiyatı 10'dan yüksekse ZAMAN sütununda ve gri background-color.