HTML 参考手册
HTML <button> formaction 属性
带有两个提交按钮的表单(带有不同的 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>
运行结果:
点击运行 »