LoginSignup
0
0

More than 3 years have passed since last update.

入力フォームに文字を表示させたい

Last updated at Posted at 2020-02-27

入力フォームに文字を表示させる方法です。
なんとなく忘れやすいので、共有します。

導入前

<input type="text">

placeholderを使う

<input type="text" placeholder="ここが入力欄に表示されます">

placeholderを使うと入力欄に文字が表示されます。
文字を入力すると消えます。

valueを使う

<input type="text" value="ここが入力欄に表示されます">

valueを使うと入力欄にあらかじめ入力された状態になります。
文字を入力しても消えません。

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