El atributo de evento onreset en HTML se activa cuando se restablece el formulario. Este atributo funciona con la etiqueta de formulario.
Etiquetas admitidas:
Sintaxis:
<form onreset = "script">
Valor de atributo: este atributo contiene un script de valor único que funciona cuando se llama al evento onreset.
Ejemplo:
html
<!DOCTYPE html > <html> <head> <title>onreset event attribute</title> <style> body { text-align:center; } h1 { color:green; } </style> <script> function Geeks() { alert("Form Reset...") ; } </script > </head> <body> <h1>GeeksforGeeks</h1> <h2>onreset event attribute</h2> <form onreset="Geeks()" style="color:blue";> First Name: <input type="text"></br> Last Name: <input type="text"></br> <input type="reset"> </form> </body> </html>
Producción:
Navegador compatible: los navegadores compatibles con el atributo de evento onreset se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Ópera
- Firefox
- Safari