清除小程序的H5富文本解析的样式

//可通过正则来匹配去掉富文本的行内样式
var html0 =res.data.datas.NEWS_CONTENT;
var html1 = html0.replace(/\s+style="[^"]*"/g,'')
var newHtml = html1.replace(/, ')
that.article=`
${newHtml}
`
;

你可能感兴趣的:(微信小程序)