aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/htmlelement/index.md
diff options
context:
space:
mode:
Diffstat (limited to 'files/fr/web/api/htmlelement/index.md')
-rw-r--r--files/fr/web/api/htmlelement/index.md118
1 files changed, 118 insertions, 0 deletions
diff --git a/files/fr/web/api/htmlelement/index.md b/files/fr/web/api/htmlelement/index.md
new file mode 100644
index 0000000000..5b5276f04e
--- /dev/null
+++ b/files/fr/web/api/htmlelement/index.md
@@ -0,0 +1,118 @@
+---
+title: HTMLElement
+slug: Web/API/HTMLElement
+tags:
+ - DOM
+ - Référence_du_DOM_Gecko
+translation_of: Web/API/HTMLElement
+---
+<div>
+ {{ApiRef}}</div>
+<h2 id="Interface_des_éléments_HTML">Interface des éléments HTML</h2>
+<p><code>HTMLElement</code> est une interface abstraite pour le <a href="/fr/docs/DOM">DOM</a>, héritée par tous les éléments HTML.</p>
+<h2 id="Propriétés">Propriétés</h2>
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">Nom</th>
+ <th scope="col">Type</th>
+ <th scope="col">Description</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{domxref("element.accessKey", "accessKey")}} {{HTMLVersionInline(5)}}</td>
+ <td>{{domxref("DOMString")}}</td>
+ <td>La touche de navigation clavier assignée à l'élément.</td>
+ </tr>
+ <tr>
+ <td>{{domxref("element.accessKeyLabel", "accessKeyLabel")}} {{HTMLVersionInline(5)}}</td>
+ <td>{{domxref("DOMString")}}</td>
+ <td>Une chaîne de caractères définissant la touche de navigation clavier assignée.</td>
+ </tr>
+ <tr>
+ <td>{{domxref("element.className", "className")}}</td>
+ <td>{{domxref("DOMString")}}</td>
+ <td>Le nom de la classe <a href="/fr/docs/CSS">CSS</a> définie pour l'élément.</td>
+ </tr>
+ <tr>
+ <td>{{domxref("element.dataset", "dataset")}} {{HTMLVersionInline(5)}}</td>
+ <td>{{domxref("DOMStringMap")}}</td>
+ <td>Un tableau associatif des attributs  <code>data-*</code> de l'élément.</td>
+ </tr>
+ <tr>
+ <td>{{domxref("element.dir", "dir")}}</td>
+ <td>{{domxref("DOMString")}}</td>
+ <td>L'attribut <code>dir</code> de l'élément.</td>
+ </tr>
+ <tr>
+ <td>{{domxref("element.id", "id")}}</td>
+ <td>{{domxref("DOMString")}}</td>
+ <td>L'ID de l'élément.</td>
+ </tr>
+ <tr>
+ <td>{{domxref("element.lang", "lang")}}</td>
+ <td>{{domxref("DOMString")}}</td>
+ <td>L'attribut  <code>lang</code> de l'élément.</td>
+ </tr>
+ <tr>
+ <td>{{domxref("element.title", "title")}}</td>
+ <td>{{domxref("DOMString")}}</td>
+ <td>L'attribut <code>title</code> de l'élément.</td>
+ </tr>
+ </tbody>
+</table>
+<h2 id="Méthodes">Méthodes</h2>
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">Nom et paramètres</th>
+ <th scope="col">Renvoie</th>
+ <th scope="col">Description</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{domxref("element.blur()", "blur()")}} {{HTMLVersionInline(5)}}</td>
+ <td><code>void</code></td>
+ <td>Retire le focus clavier de l'élément actuellement sélectionné.</td>
+ </tr>
+ <tr>
+ <td>{{domxref("element.click()", "click()")}} {{HTMLVersionInline(5)}}</td>
+ <td><code>void</code></td>
+ <td>Envoie un évènement <code>click</code> à l'élément.</td>
+ </tr>
+ <tr>
+ <td>{{domxref("element.focus()", "focus()")}} {{HTMLVersionInline(5)}}</td>
+ <td><code>void</code></td>
+ <td>Place le focus clavier sur l'élément.</td>
+ </tr>
+ </tbody>
+</table>
+<h2 id="Spécification">Spécification</h2>
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">Spécification</th>
+ <th scope="col">Statut</th>
+ <th scope="col">Commentaires</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{SpecName('HTML WHATWG', 'elements.html#htmlelement', 'HTMLElement')}}</td>
+ <td>{{Spec2('HTML WHATWG')}}</td>
+ <td> </td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility">Compatibilité des navigateurs</h2>
+
+<p>{{Compat("api.HTMLElement")}}</p>
+
+<h2 id="See_also">Voir aussi</h2>
+
+<ul>
+ <li>{{domxref("Element")}}</li>
+</ul>