<XSLT elemento di riferimento
Definizione e l'utilizzo
Il <xsl:choose> elemento viene utilizzato in combinazione con <xsl:when> e <xsl:otherwise> di esprimere molteplici test condizionali.
Se nessun <xsl:when> è vero, il contenuto di <xsl:otherwise> viene elaborato.
Se nessun <xsl:when> è vero, e non <xsl:otherwise> elemento è presente, nulla si crea.
Tip: Per la semplice test condizionale, utilizzare il <xsl:if> invece elemento.
Sintassi
<xsl:choose>
<!-- Content:(xsl:when+,xsl:otherwise?) -->
</xsl:choose>
attributi
Nessuna
Esempi
Il codice qui sotto vi aggiunge uno sfondo di colore alla colonna dell'artista quando il prezzo del CD è superiore a 10.
Esempio
<?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>
Prova tu stesso " Dichiarare una variabile denominata "color" . Impostare il suo valore al color attributo dell'elemento corrente. Se l'elemento corrente non ha un attributo di colore, il valore di "color" sarà "green" :
<xsl:variable name="color">
<xsl:choose>
<xsl:when test="@color">
<xsl:value-of select="@color"/>
</xsl:when>
<xsl:otherwise>green</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<XSLT elemento di riferimento