- 0133技术站
- 联系QQ:88526
- QQ交流群
- 微信公众号
表示程序处理button提交信息的URI。如果指定了,将重写button表单拥有者的action属性。
Internet Explorer 10, Firefox, Opera, Chrome, 和 Safari 支持 formaction 属性。
注意: Internet Explorer 9 及更早IE版本不支持 formaction 属性。
formaction 属性是 HTML 5 中的新属性。
<button type="submit" formaction="URL">
值 | 描述 |
URL | 规定将表单数据发送到的地址 可能值: 绝对 URL - 完整的页面URL地址 相对 URL 地址 -指向当前网站的一个文件 |
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <form action="demo-form.php" 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.php">提交</button> </form> </body> </html>
点击 "运行实例" 按钮查看在线实例
推荐手册