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

個人学習メモ#13 formの種類おさらい

Last updated at Posted at 2018-08-02

フォームに関しての内容に取り組んだので、少し振り返りと、
知らなかった事に関しては説明も入れてます。

フォーム
form name="" action="" url="" method=""

テキストボックス
input type="text" name="" value=""

テキストエリア
textarea name="" cols="" rows=""

チェックボックス
input type="checkbox" name="" value=""

ラジオボタン
input type="radio" name="" value=""

ドロップダウンメニュー
select name=""/option value=""

リストボックス
select name="" size=""/option value=""
(選択肢が最初から見えている状態)

ボタン
input type="button" value=""

送信
input type="submit" value=""

リセット
input type="reset" value=""
(フォーム内容を全て削除し、元の状態に戻す)

ファイル
input type="file" value=""
(サーバーに送信するファイルを選択できるようになる)

隠し属性
input type="hidden" value=""
(ブラウザ上で表示されないを非表示データを送信することが出来る、
ただしソースを見るとわかるので注意。)

1
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
1
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?