HTML <button> formaction 属性

❮ HTML <button> 标签

实例

带有两个提交按钮的表单(带有不同的 action),第一个提交按钮将表单数据提交到 "action_page.php", 第二个提交按钮将表单数据提交到 "action_page2.php":

<form action="/action_page.php" method="get">
  <label for="fname">First name:</label>
  <input type="text" id="fname" name="fname"><br><br>
  <label for="lname">Last name:</label>
  <input type="text" id="lname" name="lname"><br><br>
  <button type="submit">Submit</button>
  <button type="submit" formaction="/action_page2.php">Submit to another page</button>
</form>
亲自试一试 »

定义和用法

formaction 属性指定提交表单时将表单数据发送到哪里。此属性覆盖表单的 action 属性。

该属性与 type="submit" 配合使用。


浏览器支持

表中的数字表示支持该属性的第一个浏览器版本。

属性
formaction 9.0 10.0 4.0 5.1 15.0

语法

<button type="submit" formaction="URL">

属性值

描述
URL 规定将表单数据发送到的地址。

可能的值:

  • 绝对 URL - 完整的页面URL地址( 比如 href="http://www.example.com/formresult.asp")
  • 相对 URL 地址 -指向当前网站的一个文件( 比如 href="formresult.asp")

❮ HTML <button> 标签