cutmail's blog

write the code

知らなかったフォーム属性

フォームをいじっていて、知らなかった属性があったのでメモ。

readonly
typeの属性がtext,passwordの場合に使用可能。入力オブジェクトの変更を無効にする。
選択は有効で、Tabキーによる移動もできる。
データも送信される。

使用例

<input type="text" name="hoge" value="test" readonly>