带有两个提交按钮的表单(带有不同的 action)

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/weixin_39967349/article/details/77743307

这里我们要掌握h5新增的属性formaction

<!DOCTYPE HTML>
<html>
<body>

<form method="get">
    First name: <input type="text" name="fname" /><br />
    Last name: <input type="text" name="lname" /><br />
    <button type="submit" formaction="/example/html5/demo_form.asp">提交</button><br />
    <button type="submit" formaction="/example/html5/demo_admin.asp">以管理员身份提交</button>
</form>

</body>
</html>

猜你喜欢

转载自blog.csdn.net/weixin_39967349/article/details/77743307