diff options
author | MDN <actions@users.noreply.github.com> | 2021-07-06 00:36:59 +0000 |
---|---|---|
committer | MDN <actions@users.noreply.github.com> | 2021-07-06 00:36:59 +0000 |
commit | c8a90c7efb53bdf1f1b019a071d9b80e3efb823e (patch) | |
tree | b0eab4399a81ad9a3c73da565a937d1a2f0f3431 /files/fr/orphaned | |
parent | 9e402885ddc03e6a287453189adb426ec930742a (diff) | |
download | translated-content-c8a90c7efb53bdf1f1b019a071d9b80e3efb823e.tar.gz translated-content-c8a90c7efb53bdf1f1b019a071d9b80e3efb823e.tar.bz2 translated-content-c8a90c7efb53bdf1f1b019a071d9b80e3efb823e.zip |
[CRON] sync translated content
Diffstat (limited to 'files/fr/orphaned')
-rw-r--r-- | files/fr/orphaned/web/api/htmlorforeignelement/tabindex/index.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/files/fr/orphaned/web/api/htmlorforeignelement/tabindex/index.html b/files/fr/orphaned/web/api/htmlorforeignelement/tabindex/index.html new file mode 100644 index 0000000000..6edfa50424 --- /dev/null +++ b/files/fr/orphaned/web/api/htmlorforeignelement/tabindex/index.html @@ -0,0 +1,26 @@ +--- +title: element.tabIndex +slug: orphaned/Web/API/HTMLOrForeignElement/tabIndex +tags: + - Référence_du_DOM_Gecko +translation_of: Web/API/HTMLOrForeignElement/tabIndex +original_slug: 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> |