English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
HTML: <fieldset> disabled Attribut
Online-Beispiel
Beispiel <!DOCTYPE html> <html> <head>-8<meta charset="utf ">-<title>Verwendung der HTML-Attribute disabled für fieldset3codebox.com)</title> </head> <body> <form> <fieldset disabled> <legend>Personalia:</legend> Name: <input type="text"><br> E-Mail: <input type="text"><br> Geburtsdatum: <input type="text"> </fieldset> </form> </body> </html>Testen Sie, ob ‹/›
IEFirefoxOperaChromeSafari
Except for Internet Explorer and Safari, all other mainstream browsers support the disabled attribute.
The disabled attribute is a boolean attribute.
The disabled attribute specifies that a group of form elements (a fieldset) should be disabled.
Disabled fieldset is not available and cannot be clicked.
can set the disabled attribute to allow users to use input fields only when certain conditions are met (such as checking a checkbox, etc.). Then, you can use JavaScript to remove the disabled value and make the fieldset available again.
The disabled attribute is a difference between the <fieldset> tag in HTML5 new attributes.
In XHTML, prohibited attributes must not be minimized, the disabled attribute must be defined as <fieldset disabled="disabled">.
<fieldset disabled>