English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

HTML Referenzhandbuch

Vollständiges Verzeichnis der HTML-Tags

HTML: <form> novalidate-Attribut

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.

 HTML <form> Tag

Online-Beispiel

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 ‹/›

Browser Compatibility

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.

Definition and Usage

The novalidate attribute is a boolean attribute.

The novalidate attribute specifies that form data (input) is not validated when the form is submitted.

HTML 4.01 with HTML5differences

The novalidate attribute is an HTML5 new attributes.

Differences between HTML and XHTML

In XHTML, attribute minimization is prohibited, the novalidate attribute must be defined as <form novalidate="novalidate">.

Syntax

<form novalidate>

 HTML <form> Tag