El atributo de evento onsubmit en HTML se activa cuando se envía un formulario.
Etiquetas admitidas:
Sintaxis:
<form onsubmit = "script">
Valor de atributo: este atributo contiene un script de valor único que funciona cuando se realiza una llamada de evento onsubmit.
Nota: este atributo solo se puede usar dentro de la etiqueta del formulario.
Ejemplo:
html
<!DOCTYPE html > <html> <head> <title>onsubmit event attribute</title> <style> body { text-align:center; } h1 { color:green; } </style> <script> function Geeks() { alert("Form submitted successfully.") ; } </script > </head> <body> <h1>GeeksforGeeks</h1> <h2>onsubmit event attribute</h2> <form onsubmit = "Geeks()"> First Name:<input type = "text" value = "" /><br/> Last Name:<input type = "text" value = "" /><br/> <input type = "submit" value = "Submit" /> </form> </body> </html>
Producción:
Navegador compatible: los navegadores compatibles con el atributo de evento onsubmit se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Ópera
- Firefox
- Safari
Publicación traducida automáticamente
Artículo escrito por sheyakhare1999 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA