1
1

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.

valueとplaceholderの違い(input要素でtype属性の属性値がtextのとき)

Posted at

valueの場合

<div>
  <input type="text" value="テスト">
</div>


スクリーンショット 2020-07-01 23.38.51.png
初期値として設定することができる。

placeholderの場合

<div>
  <input type="text" placeholder="テスト">
</div>


スクリーンショット 2020-07-01 23.35.39.png
入力の見本のテキストを表示できる。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?