23
15

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【小ネタメモ】htmlのcheckboxをreadonlyにする

Posted at

経緯

  1. 管理画面でON/OFFを表すユーザーデータの表示にチェックボックスを使いたい
  2. 表示だけだから編集できない方がいいな
  3. disabledだと薄灰色になって見にくいから使いたくないな
  4. checkbox「readonly?いえ、知らない子ですね」
  5. たっけてぐーぐる先生
  6. ぐーぐる先生「ほらよ」
  7. やったー、メモっとこ

やり方

checkboxonclickreturn false;を書く。

readonly_check_box.png

<input type='checkbox' disabled>
<input type='checkbox' disabled checked>
<br>
<input type='checkbox' onclick='return false;'>
<input type='checkbox' onclick='return false;' checked>
23
15
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
23
15

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?