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

2021-11-21  本文已影响0人  昊哇恰

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

if (match.search(/style=/gi) == -1) {
  match = match.replace(/\<img/gi, '<img style=""');
}
return match;

});

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

上一篇 下一篇

猜你喜欢

热点阅读