rich-text如何控制nodes里面img标签的宽度,对外层设置宽度p标签有效,但img标签无效
可参见 https://mp.weixin.qq.com/debug/wxadoc/dev/component/rich-text.html
在你获取到后台传输的富文本字段时
做一下处理
replace(/\<img/gi, '<img class="rich-img" ' );
就可以了
rich-text .rich-img {
width: 100% ;
height: auto ;
}
可以参考https://developers.weixin.qq.com/community/develop/doc/0006c6678c80806925b71c32456806
意思是img标签里必须带有width属性,不能通过设置rich-text外层宽度实现?