HTML | <formulario> onreset Atributo

El atributo HTML <form> onreset se utiliza para especificar los campos de restablecimiento de formulario.

Sintaxis:

<form onreset = "script">

Valor de atributo: este atributo contiene un script de valor único que funciona cuando se llama al evento onreset.

Ejemplo:

<!DOCTYPE html > 
<html> 
    <head> 
        <title>
            HTML form onreset attribute
        </title> 
          
        <style> 
            body { 
                text-align:center; 
            } 
            h1 { 
                color:green; 
            } 
        </style> 
          
        <script> 
            function Geeks() { 
                alert("Form Reset...") ; 
            } 
        </script > 
    </head> 
      
    <body> 
        <h1>GeeksforGeeks</h1> 
        <h2>Form 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:

Navegadores compatibles: los navegadores compatibles con el atributo <form> onreset se enumeran a continuación:

  • Google Chrome
  • explorador de Internet
  • Firefox
  • Safari
  • Ópera

Publicación traducida automáticamente

Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *