7
5

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.

textareaで取得した値の改行が消えてしまった時に反映させる方法

Last updated at Posted at 2020-07-21

textarea、inputで値を取得して、表示させる時に改行を含めて表示させる方法です。

textareaで取得した値に改行が入らない

スクリーンショット 2020-07-18 16.05.27.png

上記のようにデフォルトだと、textareに改行を入力しても、表示させる時に改行表示ができません。

white-space:pre-wrapを指定する

<p style="white-space:pre-wrap;"></p>

表示させるHTMLにwhite-space:pre-wrapを指定することで、改行も表示させることができます。

スクリーンショット 2020-07-18 16.17.57.png

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?