formnovalidate属性是一个布尔属性,如果使用该属性,则提交表单时按钮不会执行验证过程,formnovalidate 属性覆盖表单的 novalidate 属性,formnovalidate属性仅用于类型为“ submit”的按钮。
具有两个提交按钮的表单。第一个提交按钮通过默认验证提交表单数据,第二个提交按钮在没有验证的情况下提交表单数据:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>HTML <button> formnovalidate 属性使用-编程教程网(123520.net)</title> </head> <body> <form action="action_page.php" method="get"> E-mail: <input type="email" name="userid"><br> <button type="submit">Submit</button><br> <button type="submit" formnovalidate>提交不验证</button> </form> </body> </html>测试看看 ‹/›
IEFirefoxOperaChromeSafari
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>