1. ホーム
  2. Web制作
  3. HTML/Xhtml

textareaの無効化およびreadonlyプロパティ

2022-01-10 08:59:49

disabledの定義と使い方

は、以下の通りです。

disabled属性は、ブール値のプロパティです。

その

disabled属性は、テキストエリアを無効にすることを指定します。

無効化されたテキストエリアは利用できず、テキストを選択することもできません(コピーもできません)。

その

disabledプロパティは、特定の条件(チェックボックスの選択など)を満たすまで、ユーザーがテキストエリアを使用できないように設定することができます。その後、JavaScriptを使用してdisabledプロパティの値を削除することで、テキストエリアを使用可能にすることができます。

HTML4.01とHTML5の違いについて

なし

HTMLとXHTMLの違い
/{br In XHTML, the disabled attribute is minimized and the disabled attribute must be defined as

The difference between disabled and disabled = "disabled"

disabled = "disabled" is the XML specification and must be written as disabled = "disabled" if it is to remain XML compliant, if you are not using XHTML and don't care about the XML syntax then you can use it alone.

Note: In browsers other than Firefox, e.g. chrome

Differences between HTML and XHTML
/{br In XHTML, the attribute minimization is disabled and the readonly attribute must be defined as