美文网首页
处理微信小程序图片展示异常

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

作者: 昊哇恰 | 来源:发表于2021-11-21 16:45 被阅读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;
    }

    相关文章

      网友评论

          本文标题:处理微信小程序图片展示异常

          本文链接:https://www.haomeiwen.com/subject/vehmtrtx.html