原谅我的新手......参考这个假设:jQuery 将换行符转换为 br(nl2br 等效项)
我怎么结婚
function nl2br (str, is_xhtml) {
var breakTag = (is_xhtml || typeof is_xhtml === 'undefined') ? '<br />' : '<br>';
return (str + '').replace(/([^>\r\n]?)(\r\n|\n\r|\r|\n)/g, '$1'+ breakTag +'$2');
}
或者
textAreaContent=textAreaContent.replace(/\n/g,"<br>");
进入我现有的功能:
$(document).ready(function() {
$.ajax({
url : "Notes_copy.txt",
dataType: "text",
success : function (data) {
$("#NotesTxtBx").html(data);
}
});
});
例如,上面示例中的我的 textAreaContent 是什么
非常感谢