Ich habe eine Textarea mit id ist #Infoartist folgen:
<textarea id="infoartist" ng-show="dForm" style="width: 100%;" placeholder="Tell your contacts and collectors about yourself."></textarea>
In Javascript-Code, werde ich den Wert von textarea erhalten und ersetzen escaping neue Zeile ( \n\r ) durch <br />
Tag, wie zum Beispiel:
var text = document.getElementById("infoartist").value;
text = text.replace(/\r?\n/g, '<br />');
Wenn Sie also Jquery verwenden (wie ich):
var text = $("#infoartist").val();
text = text.replace(/\r?\n/g, '<br />');
Ich hoffe, es hat Ihnen geholfen :-)