最新的Web开发教程
 

HTML formaction Attribute


定义和用法

formaction属性指定在提交表单向何处发送表单数据。 此属性将覆盖表单的action属性。

formaction属性仅用于inputs/buttonstype="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