带有两个提交按钮的表单(进行验证或不进行验证),第一个提交按钮提交数据时带有默认的表单验证,第二个提交按钮提交数据时不进行表单验证:
<form action="demo_form.html" method="get">E-mail: <input type="email" name="userid"> <br> <button type="submit">提交</button> <br> <button type="submit" formnovalidate>不验证提交</button> </form>尝试一下 »
Internet Explorer 10, Firefox, Opera, Chrome支持 formmethod 属性。
注意: Safari、Internet Explorer 9 及更早IE版本不支持 formmethod 属性。
formnovalidate 属性是一个 boolean(布尔) 属性。
如果使用该属性,则提交表单时按钮不会执行验证过程。formnovalidate 属性覆盖表单的 novalidate 属性。
该属性与 type="submit" 配合使用。
formnovalidate 属性是 HTML 5 中的新属性。
在 XHTML中, 属性不允许简写, formnovalidate 属性必须定义为 <button type="submit" formnovalidate="formnovalidate">.
<button type="submit" formnovalidate>
在线实例
字符集 & 工具
最新更新
站点信息
关注我们