Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
値に改行を追加する方法はあり<s:textarea>ますか?
<s:textarea>
<s:textarea name="text_area" value="need_some_line_breaks" />
ありがとう。
これは Struts 2 関連ではなく、基本的な HTML です。
改行が必要な場合は、文字列内の必要な場所に<textarea>改行 ( "\n") を挿入します。個人的には、テキストエリアのデータはそのままにして、テキストエリアの外側で表示する必要がある場合にのみ、改行を<br/>タグに置き換えて変換します。このようにして、元のデータは常に保持されます。
<textarea>
"\n"
<br/>