blob: 8227bf6d7a6d65e9c11f291f92cf0bd5b12a65b1 (
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
|
---
title: GlobalEventHandlers.onreset
slug: Web/API/GlobalEventHandlers/onreset
tags:
- API
- DOM
- Gestionnaires d'évènements
- Propriété
- évènements
translation_of: Web/API/GlobalEventHandlers/onreset
---
{{ ApiRef() }}
La propriété **`GlobalEventHandlers.onreset`** contient un {{event("Event_handlers", "event handler")}} (_gestionnaire d'évènements_) déclenché quand un évènement {{event("reset")}} est reçu.
## Syntaxe
window.onreset = funcRef;
### Paramètres
- `funcRef` est une référence à une fonction.
## Exemple
```html
<html>
<script>
function reg() {
window.captureEvents(Event.RESET);
window.onreset = hit;
}
function hit() {
alert('hit');
}
</script>
<body onload="reg();">
<form>
<input type="reset" value="reset" />
</form>
<div id="d"> </div>
</body>
</html>
```
## Notes
L'évènement `reset` est déclenché quand l'utilisateur clique sur le bouton de réinitialisation dans un formulaire (`<input type="reset"/>`).
## Spécification
| Spécification | Statut | Commentaire |
| ------------------------------------------------------------------------------------------------ | -------------------------------- | ----------- |
| {{SpecName('HTML WHATWG','webappapis.html#handler-onreset','onreset')}} | {{Spec2('HTML WHATWG')}} | |
## Compatibilité des navigateurs
{{Compat("api.GlobalEventHandlers.onreset")}}
|