微信小程序rich-text富文本 图片自适应宽度

版权声明:转载请注明出处,谢谢。 https://blog.csdn.net/msllws/article/details/84636762

第一种方法:接口里给img标签加样式(PHP)

$info['contents'] = str_replace("<img ", "<img style='max-width:100%;height:auto;'", $info['contents']);

第二种方法:小程序里给img标签加样式

that.setData({
    //富文本内容
    contents: res.data.contents.replace(/\<img/gi, '<img style="max-width:100%;height:auto"')
})

猜你喜欢

转载自blog.csdn.net/msllws/article/details/84636762