带有两个提交按钮的表单(带有不同的 action):
<form action="demo_form.asp" method="get">
First name: <input type="text" name="fname" />
Last name: <input type="text" name="lname" />
<button type="submit">提交</button><br />
<button type="submit" formaction="demo_admin.asp"
>以管理员身份提交</button>
</form>
formaction 属性是 HTML 5 中的新属性。
<button formaction="value">