js \n replace 全局 替换
2019-08-17 本文已影响0人
他大舅啊
使用带有g标识的正则, 可以搜索并替换所有匹配的字符
var txts = $('.wra').html();
txts=txts.replace(/\n/g,'<br>')
$('.wra').html(txts);
换行符因为操作系统不同会有差异, 因此使用下面的方法更加安全:
var txts = $('.wra').html();
txts=txts.replace(/[\n\r]/g,'<br>')
$('.wra').html(txts);