当您使用 formaction 属性时,表单的提交地址将使用属性本身的值,而不是<form>标签的 action 属性的值,请参考下述示例:
带有两个提交按钮的表单(带有不同的 action),第一个提交按钮将表单数据提交到 "demo_form.html", 第二个提交按钮将表单数据提交到 "demo_admin.html":
<form action="demo_form.html" method="get">
First name: <input type="text" name="fname"><br>
Last name: <input type="text" name="lname"><br>
<button type="submit">提交</button><br>
<button type="submit" formaction="demo_admin.html">提交</button>
</form>
Internet Explorer 10, Firefox, Opera, Chrome, 和 Safari 支持 formaction 属性。
注意: Internet Explorer 9 及更早IE版本不支持 formaction 属性。
formaction 属性覆盖 form 元素的 action 属性。
该属性与 type="submit" 配合使用。
formaction 属性是 HTML 5 中的新属性。
<button type="submit" formaction="URL">
值 | 描述 |
---|---|
URL | 规定将表单数据发送到的地址。 可能值:
|
备案信息: 粤ICP备15087711号-2
Copyright © 2008-2024 啊嘎哇在线工具箱 All Rights.
本站所有资料来源于网络,版权归原作者所有,仅作学习交流使用,如不慎侵犯了您的权利,请联系我们。