HTML 参考手册
HTML <button> formmethod 属性
带有两个提交按钮的表单,第一个提交按钮使用 method="get" 提交表单数据,第二个提交按钮使用 method="post" 提交表单数据
源代码:
点击运行 »
<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> <button type="submit" formmethod="post" formaction="demo_post.html"> 使用 POST 提交</button> </form>
运行结果:
点击运行 »