例
有兩個表單提交按鈕。 第一個提交按鈕提交表單數據"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>
試一試» 定義和用法
該formaction屬性指定在提交表單向何處發送表單數據。 此屬性將覆蓋表單的action屬性。
該formaction屬性僅用於與按鈕type="submit" 。
瀏覽器支持
在表中的數字指定完全支持屬性所述第一瀏覽器的版本。
屬性 | |||||
---|---|---|---|---|---|
formaction | 9 | 10.0 | 4 | 5.1 | 10.6 |
HTML 4.01和HTML5之間的差異
該formaction屬性,HTML5是新的。
句法
<button type="submit" formaction=" URL ">
屬性值
值 | 描述 |
---|---|
URL | 指定向何處發送表單數據。 可能的值:
|