html字符串中回车符不显示但有换行,css或js的处理换行方式

html字符串中回车符不显示但有换行,css的处理换行方式:

white-space: pre-wrap;

用js也可以,稍微麻烦些:

a = JSON.stringify(a);
a = a.replace(/\\n/g, '<br />');
div.innerHTML = a;

先用JSON.stringify把不显示的回车符换成\n,然后全局替换换行标签。

(版权归cpury.com所有,转载请注明出处。)