Definición y Uso
El formaction atributo especifica dónde enviar el formulario-datos cuando se envía un formulario. Este atributo anula de forma action atributo.
El formaction atributo sólo se utiliza para inputs/buttons con type="submit" .
Se aplica a
El formaction atributo se puede usar en los siguientes elementos:
Elementos | Atributo |
---|---|
<button> | formaction |
<input> | formaction |
Ejemplos
Button Ejemplo
Un formulario con dos botones de envío. El primer botón de enviar los datos del formulario se somete a "demo_form.asp" , y las segundas presente a "demo_admin.asp" :
<form action="demo_form.asp" method="get">
First name: <input type="text" name="fname"><br>
Last name: <input type="text" name="lname"><br>
<button type="submit">Submit</button><br>
<button type="submit" formaction="demo_admin.asp">Submit as admin</button>
</form>
Inténtalo tú mismo " Input Ejemplo
Un formulario HTML con dos botones de envío, con diferentes acciones:
<form action="demo_form.asp">
First name: <input type="text" name="fname"><br>
Last name: <input type="text" name="lname"><br>
<input type="submit" value="Submit"><br>
<input type="submit" formaction="demo_admin.asp" value="Submit as admin">
</form>
Inténtalo tú mismo " Soporte para el navegador
El formaction
atributo tiene el siguiente soporte de los navegadores para cada elemento:
Elemento | |||||
---|---|---|---|---|---|
button | 9.0 | 10.0 | 4.0 | 5.1 | 10.6 |
input | 9.0 | 10.0 | 4.0 | 5.1 | 10.6 |