<xsl:choose> 요소와 함께 사용되는 <xsl:when> 및 <xsl:otherwise> 여러 시험 조건을 표현.
<xsl:choose> 요소
통사론
<xsl:choose>
<xsl:when test=" 어디 상태를 선택 넣어 XML 파일에 대한 여러 조건 테스트를 삽입하려면 추가 <XSL : 선택>, <XSL : 때>, 그리고 <xsl:otherwise> 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">
<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>
»그것을 자신을 시도 위의 코드는에 분홍색 배경 색상을 추가 할 것 "Artist" CD의 가격이 10보다 높은 경우 열입니다.
또 다른 예
여기에 포함 된 다른 예는 두 <xsl:when> 요소 :
예
<?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>
»그것을 자신을 시도 위의 코드는에 분홍색 배경색을 추가 할 것이다 "Artist" CD의 가격이 9보다 낮은 또는 10와 동일 할 때 CD의 가격이 10 이상이되면 열, 및 회색 배경 컬러.