技术碎片
技术记录
帮助交流
组件richtext包含uniapp 微信小程序多图空白间隔
richtext组件直接拿来会出现很多样式问题使用如下代码处理样式即可解决大部分情况
convertRichtext(text){
let content = text.replace(/<img[^>]*>/gi,function(match){
if(match.search(/style=/gi) == -1){
match = match.replace(/\<img/gi,'<img style=""');
}
return match;
})
content = content.replace(/style="/gi, '$& max-width:100% !important;vertical-align:middel;');
content = content.replace(/<br[^>]*\/>/gi,'');
retrurn content;
}
如有问题请加QQ 2137087126咨询
转载请注明来源地址:www.zhyunxuan.com>
更新时间 2023-07-07
 1644
梦想有多远,路就有多远