Bootstrap

js空格删除

清除所有空格

$('#t-content').html(HTMLDecode(res.data.content.replace(/\s/g,"")));

清除某个字段后面

$('#t-content').html(HTMLDecode(res.data.content.replace(/& /g, "&")));
;