diff options
author | julieng <julien.gattelier@gmail.com> | 2021-10-02 17:20:24 +0200 |
---|---|---|
committer | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-10-02 17:30:20 +0200 |
commit | 1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde (patch) | |
tree | 30a56efd3eff3a01bd1611e1840fdbbfacf544a4 /files/fr/web/api/globaleventhandlers/onreset/index.md | |
parent | c05efa8d7ae464235cf83d7c0956e42dc6974103 (diff) | |
download | translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.tar.gz translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.tar.bz2 translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.zip |
convert content to md
Diffstat (limited to 'files/fr/web/api/globaleventhandlers/onreset/index.md')
-rw-r--r-- | files/fr/web/api/globaleventhandlers/onreset/index.md | 67 |
1 files changed, 27 insertions, 40 deletions
diff --git a/files/fr/web/api/globaleventhandlers/onreset/index.md b/files/fr/web/api/globaleventhandlers/onreset/index.md index 40d2325e6f..8227bf6d7a 100644 --- a/files/fr/web/api/globaleventhandlers/onreset/index.md +++ b/files/fr/web/api/globaleventhandlers/onreset/index.md @@ -9,25 +9,23 @@ tags: - évènements translation_of: Web/API/GlobalEventHandlers/onreset --- -<p>{{ ApiRef() }}</p> +{{ ApiRef() }} -<p>La propriété <code><strong>GlobalEventHandlers.onreset</strong></code> contient un {{event("Event_handlers", "event handler")}} (<em>gestionnaire d'évènements</em>) déclenché quand un évènement {{event("reset")}} est reçu.</p> +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. -<h2 id="Syntax">Syntaxe</h2> +## Syntaxe -<pre>window.onreset = funcRef; -</pre> + window.onreset = funcRef; -<h3 id="Parameters">Paramètres</h3> +### Paramètres -<ul> - <li><code>funcRef</code> est une référence à une fonction.</li> -</ul> +- `funcRef` est une référence à une fonction. -<h2 id="Example">Exemple</h2> +## Exemple -<pre class="brush: html"><html> -<script> +```html +<html> +<script> function reg() { window.captureEvents(Event.RESET); window.onreset = hit; @@ -36,38 +34,27 @@ function reg() { function hit() { alert('hit'); } -</script> +</script> -<body onload="reg();"> - <form> - <input type="reset" value="reset" /> - </form> - <div id="d"> </div> -</body> -</html> -</pre> +<body onload="reg();"> + <form> + <input type="reset" value="reset" /> + </form> + <div id="d"> </div> +</body> +</html> +``` -<h2 id="Notes">Notes</h2> +## Notes -<p>L'évènement <code>reset</code> est déclenché quand l'utilisateur clique sur le bouton de réinitialisation dans un formulaire (<code><input type="reset"/></code>).</p> +L'évènement `reset` est déclenché quand l'utilisateur clique sur le bouton de réinitialisation dans un formulaire (`<input type="reset"/>`). -<h2 id="Specification">Spécification</h2> +## Spécification -<table class="standard-table"> - <tbody> - <tr> - <th scope="col">Spécification</th> - <th scope="col">Statut</th> - <th scope="col">Commentaire</th> - </tr> - <tr> - <td>{{SpecName('HTML WHATWG','webappapis.html#handler-onreset','onreset')}}</td> - <td>{{Spec2('HTML WHATWG')}}</td> - <td> </td> - </tr> - </tbody> -</table> +| Spécification | Statut | Commentaire | +| ------------------------------------------------------------------------------------------------ | -------------------------------- | ----------- | +| {{SpecName('HTML WHATWG','webappapis.html#handler-onreset','onreset')}} | {{Spec2('HTML WHATWG')}} | | -<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> +## Compatibilité des navigateurs -<p>{{Compat("api.GlobalEventHandlers.onreset")}}</p> +{{Compat("api.GlobalEventHandlers.onreset")}} |