blob: f3c3ddd160690db49567438a059f948eb713f5d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
---
title: choose
slug: Web/XSLT/Element/choose
tags:
- Référence_XSLT
translation_of: Web/XSLT/Element/choose
original_slug: Web/XSLT/choose
---
<p>
{{ XsltRef() }}
</p><p><br>
L'élément <code><xsl:choose></code> définit un choix parmi un certain nombre d'alternatives. Il se comporte comme l'instruction switch d'un langage procédural.
</p>
<h3 id="Syntaxe"> Syntaxe </h3>
<pre><xsl:choose>
<xsl:when>
<xsl:otherwise> [optionnel]
</<xsl:choose></pre> <h3 id="Attributs_obligatoires"> Attributs obligatoires </h3>
<p>Aucun.
</p>
<h3 id="Attributs_optionnels"> Attributs optionnels </h3>
<p>Aucun.
</p>
<h3 id="Type"> Type </h3>
<p>Instruction, apparaît dans un modèle. Il contient un ou plusieurs éléments <code><xsl:when></code>, et éventuellement un élément final <code><xsl:otherwise></code>.
</p>
<h3 id="D.C3.A9finition"> Définition </h3>
<p><a href="http://www.w3.org/TR/xslt#section-Conditional-Processing-with-xsl:choose">XSLT 1.0, section 9.2</a>.
</p>
<h3 id="Support_Gecko"> Support Gecko </h3>
<p>Supporté.
</p>
|