El método de envío de formulario() en HTML DOM se utiliza para enviar los datos del formulario al servidor web. Funciona igual que el botón Enviar. No contiene ningún parámetro.
Sintaxis:
formObject.submit()
Ejemplo:
<!DOCTYPE html> <html> <head> <title> HTML DOM Form submit() Method </title> </head> <body style="text-align:center;"> <h1 style="color:green;"> GeeksForGeeks </h1> <!-- HTML code to create form --> <h2>DOM Form submit() Method</h2> <form id="GFG" action="https://ide.geeksforgeeks.org/tryit.php"> <label for="username">Username:</label> <input type="text" name="username" id="Username"> <br> <label for="password">Password:</label> <input type="password" name="password" id ="password"> <br><br> <input type="button" onclick="myGeeks()" value="Submit form"> </form> <!-- script to use submit() method --> <script> function myGeeks() { document.getElementById("GFG").submit(); } </script> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el método DOM Form submit() se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Firefox
- Ópera
- Safari
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA