Rails — Add a line break into a text area

前端 未结 11 998
南旧
南旧 2020-12-12 10:21

I got a rails app where I can input a few paragraphs of text into my model. The problem is I dont know how to input any line breaks.

I\'ve tried to add \" {ln}{/ln}

11条回答
  •  暖寄归人
    2020-12-12 11:18

    The other answers are wrong. Text area does not render
    as line breaks, because the innerHTML value of the TEXTAREA element does not render HTML..

    You need to add the Line feed HTML entity:

    EXAMPLE:

    
    

    See also New line in text area - Stack Overflow

提交回复
热议问题