Le <xsl:choose> élément est utilisé en conjonction avec <xsl:when> et <xsl:otherwise> pour exprimer plusieurs tests conditionnels.
Le <xsl:choose> Element
Syntaxe
<xsl:choose>
<xsl:when test=" Où mettre la Choisissez Condition Pour insérer un test multiple conditionnel par rapport au fichier XML, ajoutez le <xsl: choose>, <xsl: when> et <xsl:otherwise> éléments au fichier XSL:
Exemple
<?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>
Essayez vous - même » Le code ci - dessus ajoutera un rose background-color à la "Artist" colonne lorsque le prix du CD est supérieur à 10.
Un autre exemple
Voici un autre exemple qui contient deux <xsl:when> éléments:
Exemple
<?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>
Essayez vous - même » Le code ci - dessus ajoutera une couleur de fond rose à la "Artist" colonne lorsque le prix du CD est supérieur à 10, et un fond de couleur gris lorsque le prix du CD est supérieur à 9 et inférieur ou égal à 10.