blob: b2dd8ca956f64049eda5e39db53dd881d90a3798 (
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
|
---
title: element.tabIndex
slug: Web/API/HTMLElement/tabIndex
tags:
- Référence_du_DOM_Gecko
translation_of: Web/API/HTMLOrForeignElement/tabIndex
---
<p>{{ ApiRef() }}</p>
<h3 id="R.C3.A9sum.C3.A9" name="R.C3.A9sum.C3.A9">Résumé</h3>
<p>Obtient ou définit l'ordre de tabulation de l'élément courant.</p>
<h3 id="Syntaxe" name="Syntaxe">Syntaxe</h3>
<pre class="eval">element.tabIndex = <em>iIndex</em>;
</pre>
<h3 id="Param.C3.A8tres" name="Param.C3.A8tres">Paramètres</h3>
<ul>
<li><code>iIndex</code> est un nombre.</li>
</ul>
<h3 id="Exemple" name="Exemple">Exemple</h3>
<pre>b1 = document.getElementById("button1");
b1.tabIndex = 1;
</pre>
<h3 id="Sp.C3.A9cification" name="Sp.C3.A9cification">Spécification</h3>
<ul>
<li><a class="external" href="http://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-40676705">DOM Level 2 HTML: tabIndex</a> <small>— <a class="external" href="http://www.yoyodesign.org/doc/w3c/dom2-html/html.html#ID-40676705">traduction en français</a> (non normative)</small></li>
</ul>
|