GlobalEventHandlers.onreset
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
La propriété GlobalEventHandlers.onreset
contient Un gestionnaire d'évènement déclenché quand un évènement reset
est reçu.
Syntaxe
js
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écifications
Specification |
---|
HTML Standard # event-reset |
Compatibilité des navigateurs
BCD tables only load in the browser