示例:
$("#sample_id").val("This is sample String
This new line for testing");
实际上这个脚本不起作用。如何在单个jquery中使用多行?
请帮助解决这个问题。
答案 0 :(得分:1)
应该
$("#sample_id").val("This is sample String \nThis new line for testing");
或
var x = `This is sample String
This new line for testing`;
$("#sample_id").val(x);
注意Symblol ``
严重重音不是''
如果你想设置它
var textareavalue = $("#sample_id").val();
textareavalue = textareavalue.replace(/(?:\r\n|\r|\n)/g, '<br />');
现在这个变量有<br>
而不是\n
答案 1 :(得分:0)
实际上这会起作用
$("#sample_id").val("This is sample String \
This new line for testing");
如果jquery中的多行使用\
来分隔行。