English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
Das novalidate-Attribut ist ein boolesches Attribut. Das novalidate-Attribut legt fest, dass die Formulardaten (Eingaben) bei der Übermittlung des Formulars nicht überprüft werden.
Bei der Übermittlung des Formulars werden die Formulardaten (Eingaben) nicht überprüft:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Verwendung der novalidate-Attribut von HTML <form>-Grundlagen-Tutorial(oldtoolbag.com)</title> </head> <body> <form action="action_page.php" novalidate> E-mail: <input type="email" name="user_email"> <input type="submit"> </form> <p>Beachten Sie, dass in Internet Explorer 9In früheren Versionen oder Safari 10In früheren Versionen wurde die novalidate-Attribut der form-Markierung nicht unterstützt.</p> </body> </html>Test see ‹/›
IEFirefoxOperaChromeSafari
Internet Explorer 10, Firefox, Opera, and Chrome all support the novalidate attribute.
Note:In Safari and Internet Explorer 9 and earlier versions do not support the novalidate attribute.
The novalidate attribute is a boolean attribute.
The novalidate attribute specifies that form data (input) is not validated when the form is submitted.
The novalidate attribute is an HTML5 new attributes.
In XHTML, attribute minimization is prohibited, the novalidate attribute must be defined as <form novalidate="novalidate">.
<form novalidate>