Definizione e utilizzo
Il formaction attributo specifica dove inviare il modulo-dati quando viene inviato un modulo. Questo attributo ignora del form action attributo.
Il formaction attributo viene utilizzato solo per inputs/buttons con type="submit" .
Si applica a
La formaction attributo può essere utilizzato sui seguenti elementi:
Elementi | Attributo |
---|---|
<button> | formaction |
<input> | formaction |
Esempi
Button Esempio
Un modulo con due presentare pulsanti. Il pulsante prima presentare invia i dati del modulo a "demo_form.asp" , e la seconda si sottomette alla "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>
Prova tu stesso " Input Esempio
Un modulo HTML con due bottoni di invio, con diverse azioni:
<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>
Prova tu stesso " Supporto per il browser
Il formaction
attributo ha la seguente supporto del browser per ogni elemento:
Elemento | |||||
---|---|---|---|---|---|
button | 9.0 | 10.0 | 4.0 | 5.1 | 10.6 |
input | 9.0 | 10.0 | 4.0 | 5.1 | 10.6 |