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 1 year has passed since last update.

html フォームタグ備忘録

Posted at

テキスト入力

<div>
  <label>お名前<input type="text"></label>
</div>
<div>
  <label>パスワード<input type="password"></label>
</div>
<div>
  <label>数量<input type="number"></label>
</div>
<div>
  <label>日付<input type="date"></label>
</div>

スクリーンショット 2022-09-18 22.57.36.png

複数行のテキスト入力

<label>内容<textarea></textarea></label>

スクリーンショット 2022-09-18 22.59.25.png

チェックボックス

複数選択できるものに使用する。

<label><input type="checkbox">商品A</label>
<label><input type="checkbox">商品B</label>
<label><input type="checkbox">商品C</label>

スクリーンショット 2022-09-18 22.59.50.png

ラジオボタン

1つだけ選ばせるものに使用する。
同じnameを付けることにより1つだけ選択できるようになる。

<label><input type="radio" name="warranty">加入済み</label>
<label><input type="radio" name="warranty">未加入</label>
<label><input type="radio" name="warranty">わからない</label>

スクリーンショット 2022-09-18 23.00.02.png

グループ化

チェックボックスやラジオボタンを枠で囲うことができる。

<!-- グループ化 -->
<fieldset>  
    <!-- フィールド説明/-->
    <legend>対象の商品</legend>
    <label><input type="checkbox">商品A</label>
    <label><input type="checkbox">商品B</label>
    <label><input type="checkbox">商品C</label>
</fieldset>

ドロップダウンリスト

<select>
  <option>-- お問合せ種別を選択してください --</option>
  <option>商品が届かない</option>
  <option>商品が壊れた</option>
  <option>間違えて注文した</option>
  <option>決済手段を変えたい</option>
  <option>その他</option>
</select>  

スクリーンショット 2022-09-18 23.00.21.png

リストボックス

<!-- multipleと記述することで複数選択が可能になる。 -->
<select size="3" multiple>
  <option>商品が届かない</option>
  <option>商品が壊れた</option>
  <option>間違えて注文した</option>
  <option>決済手段を変えたい</option>
  <option>その他</option>
</select>  

スクリーンショット 2022-09-18 23.04.46.png

ボタン

<!-- 画像を含めることができる -->
<button>送信</button>
<!-- テキストのみ -->
<input type="submit" value="送信">

スクリーンショット 2022-09-18 23.00.44.png

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?