English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
Das <textarea> Attribut required ist ein boolesches Attribut. Das Attribut required/You must fill in a text area (to submit the form).
Ein Formular mit obligatorischen Textfeldern:
<form action="action_page.php"> <textarea name="comment" required></textarea> <input type="submit"> </form>Test it out ‹/›
IEFirefoxOperaChromeSafari
All mainstream browsers except Internet Explorer and Safari support the required attribute.
The required attribute is a boolean attribute.
The required attribute specifies that/You must fill in a text area (to submit the form).
The required attribute is an HTML5 new attributes.
In XHTML, attribute abbreviations are prohibited, the required attribute must be defined as <textarea required="required">.
<textarea required>HTML <textarea> Tag