LoginSignup
11
12

More than 3 years have passed since last update.

input type="text"からtextareaに変更した時のvalueどうするの問題解決メモ

Last updated at Posted at 2020-06-01

表題の対応メモです。

<input type="text" class="text" placeholder="hoge" name="hoge" value="ああああ">

こんな感じのを複数行の入力フィールドにしたい場合、textareaにするのが手っ取り早いですが、
<textarea>タグにvalueは使えないので。

<textarea placeholder="hoge" name="hoge">ああああ</textarea>

タグで囲むことで解決出来ます。

参考

11
12
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
11
12