blob: 3ba1a7eb93993b8dafcb853571222e63fddf2ea9 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
---
title: HTMLSelectElement.selectedIndex
slug: Web/API/HTMLSelectElement/selectedIndex
translation_of: Web/API/HTMLSelectElement/selectedIndex
---
<div>{{APIRef("HTML DOM")}}</div>
<p><code><strong>HTMLSelectElement.selectedIndex</strong></code> est un <code>long</code> qui représente l'index du premier élément sélectionné {{HTMLElement("option")}}. La valeur <code>-1</code> indique qu'aucun élément est sélectionné.</p>
<h2 id="Syntaxe">Syntaxe</h2>
<pre class="syntaxbox">var <var>index</var> = <var>selectElem</var>.selectedIndex;
<em>selectElem<code>.selectedIndex = </code>index;</em>
</pre>
<h2 id="Exemple">Exemple</h2>
<h3 id="HTML">HTML</h3>
<pre class="brush: html"><p id="p">selectedIndex: 0</p>
<select id="select">
<option selected>Option A</option>
<option>Option B</option>
<option>Option C</option>
<option>Option D</option>
<option>Option E</option>
</select>
</pre>
<h3 id="JavaScript">JavaScript</h3>
<pre class="brush: js; highlight[6]">var selectElem = document.getElementById('select');
var pElem = document.getElementById('p');
// Quand une nouvelle <option> est selectionnée
selectElem.addEventListener('change', function() {
var index = selectElem.selectedIndex;
// Rapporter cette donnée au <p>
pElem.innerHTML = 'selectedIndex: ' + index;
})</pre>
<p>{{EmbedLiveSample("Exemple", "200px", "80px")}}</p>
<h2 id="Spécifications">Spécifications</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Spécification</th>
<th scope="col">Statut</th>
<th scope="col">Commentaire</th>
</tr>
<tr>
<td>{{SpecName('HTML WHATWG', '#dom-select-selectedindex', 'HTMLSelectElement')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td>Pas de changement depuis le snapshot précédent, {{SpecName("HTML5 W3C")}}.</td>
</tr>
<tr>
<td>{{SpecName('HTML5 W3C', 'forms.html#dom-select-selectedindex', 'HTMLSelectElement')}}</td>
<td>{{Spec2('HTML5 W3C')}}</td>
<td>Définition initiale, snapshot de {{SpecName("HTML WHATWG")}}.</td>
</tr>
</tbody>
</table>
<h2 id="Compatibilité_entre_les_navigateurs">Compatibilité entre les navigateurs</h2>
<p class="hidden">The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>
<p>{{Compat("api.HTMLSelectElement.selectedIndex")}}</p>
|