aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/htmlelement/index.html
blob: 5b5276f04e14b326216f0702f071a22eb856cbae (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
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>