处理微信小程序图片展示异常

// 处理富文本图片
function formatRichText(html) { //控制小程序中图片大小
let newContent = html.replace(/]*>/gi, function (match, capture) {
console.log(match.search(/style=/gi));

if (match.search(/style=/gi) == -1) {
  match = match.replace(/\

});

newContent = newContent.replace(/style="/gi, '$& max-width:100% !important; ');
newContent = newContent.replace(/]*/>/gi, '');
return newContent;
}

你可能感兴趣的:(处理微信小程序图片展示异常)