用戶上傳了一篇文章,怎么進(jìn)行分段,就是加<p>標(biāo)簽。
js文章段落加<p>
絕地?zé)o雙
2018-08-06 13:10:01
TA貢獻(xiàn)1864條經(jīng)驗 獲得超6個贊
function add_p(get_cont){
var get_cont = get_cont.trim;
var count = '<p>' + get_cont + '</p>';
count_str = count.replace(/\s+/g,'</p><p>');
return count_str;
}
舉報