Para especificar el tipo de botón en HTML5, podemos usar HTML | <botón> tipo Atributo . Este atributo se utiliza para especificar el tipo de botón. Especifica el atributo de tipo del elemento <button> . Los tipos predeterminados de elementos <button> pueden variar de un navegador a otro.
Sintaxis:
<button type="button|submit|reset">
Ejemplo:
HTML
<!DOCTYPE html> <html> <head> <title> HTML button type Attribute </title> </head> <body> <h1>GeeksforGeeks</h1> <h3>Specifying the Button type</h3> <form action="#" method="get"> Username: <input type="text" name="uname"> <br><br> Password: <input type="password" name="pwd"> <br><br> <button type="submit" value="submit"> Submit </button> <button type="reset" value="reset"> Reset </button> </form> </body> </html>
Producción:
Publicación traducida automáticamente
Artículo escrito por skyridetim y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA