HTML <button> formaction 属性
HTML <button> 标签的 formaction 属性用于覆盖 form 元素的 action 属性
该属性与 type="submit" 配合使用
语法
<button type="submit" formaction="URL">
属性值
值 | 描述 |
---|---|
URL | 设置将表单数据发送到的地址 可能值: 绝对 URL:完整的页面 URL 地址(如:href="http://a.cn/formresult.html") 相对 URL 地址:指向当前网站的一个文件(如:href="formresult.html") |
浏览器支持
Internet Explorer 10, Firefox, Opera, Chrome, 和 Safari 支持 formaction 属性
Internet Explorer 9 及更早 IE 版本不支持 formaction 属性
HTML 4.01 与 HTML5 之间的差异
formaction 属性是 HTML 5 中的新属性
范例
带有两个提交按钮的表单 ( 带有不同的 action )
- 第一个提交按钮将表单数据提交到 "/dy/html/getpost",
- 第二个提交按钮将表单数据提交到 "/dy/text/getpost":
<form action="/dy/html/getpost" 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="/dy/text/getpost">提交</button> </form>