- 0133技术站
- 联系QQ:88526
- QQ交流群
- 微信公众号
如果button是submit类型,此属性指定浏览器提交表单使用的HTTP方法。可选值:
post: 来自表单的数据被包含在表单内容中,被发送到服务器。
get: 来自表单的数据以'?'作为分隔符被附加到form的URI属性中,得到的URI被发送到服务器。当表单没有副作用,且仅包含ASCII字符时使用这种方法。
如果指定了,此属性会重写button拥有者的method属性。
Internet Explorer 10, Firefox, Opera, Chrome, 和 Safari 支持 formmethod 属性。
注意:Internet Explorer 9 及更早IE版本不支持 formmethod 属性。
formmethod 属性是 HTML 5 中的新属性。
<button type="submit" formmethod="get|post">
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <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.php">使用 POST 提交</button> </form> </body> </html>
点击 "运行实例" 按钮查看在线实例
推荐手册