0
0

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 3 years have passed since last update.

checkboxについて

Posted at

checkboxを作るときには、labelタグをつけようっていうお話。

checkbox作成時にlabelタグを付与した場合は、文字を押してもチェックに反応するが、

checkbox作成時にlabelタグを付与しない場合にはcheckboxを押すことでしたチェックの印をつけることが出来ない。

結論
checkbox作成時にはlabelをつけるとユーザーがチェックし易くなるので良い。

ちなみに、htmlに以下のように記載するとlabel有りのcheckboxを作成することが出来ます。
https://i.gyazo.com/a78ac71eac9dd7ea52cc984c3dca51e7.png

         laberあり
         <label>
            <input type="checkbox" name="q1" value="html">
            HTML
          </label>


          labelなし
            <input type="checkbox" name="q1" value="html">
            HTML
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?