定義和用法
該formaction屬性指定在提交表單向何處發送表單數據。 此屬性將覆蓋表單的action屬性。
該formaction屬性僅用於inputs/buttons與type="submit" 。
適用於
該formaction屬性可以在下列元素一起使用:
分子 | 屬性 |
---|---|
<button> | formaction |
<input> | formaction |
例子
Button示例
有兩個表單提交按鈕。 第一個提交按鈕提交表單數據"demo_form.asp"第二個提交給"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>
試一試» Input示例
有兩個HTML表單提交按鈕,用不同的操作:
<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>
試一試» 瀏覽器支持
該formaction
屬性為每個元素以下瀏覽器支持:
元件 | |||||
---|---|---|---|---|---|
button | 9 | 10.0 | 4 | 5.1 | 10.6 |
input | 9 | 10.0 | 4 | 5.1 | 10.6 |