导航:首页 > 编程语言 > richtext代码怎么写

richtext代码怎么写

发布时间:2025-06-14 16:58:13

1. 微信程序 rich-text 富文本图片自适应

<p :class="item.isMore == true ? 'richText' : 'minH'" v-if="isShow"

v-html="contentConv(item.storyContent)">

</p>

直接在css中加max-width:100%;height:auto; 。没有生效

 方式一:在style中追加 max-width:100%;height:auto; ,此方法优点灵活,对于content中所有图片都起作用

// 文章html正则追加max-width

contentConv(content) {

return content.replace(/<(img).*?(\/>|<\/img>)/g, function(mats) {

if (mats.indexOf('style') < 0) {

return mats.replace(/<\s*img/, '<img style="max-width:100%;height:auto;"');

} else {

return mats.replace(/style=("|')/, 'style=$1max-width:100%;height:auto;')

}

});

},

方式二:此方法会破坏图片设置的样式,再设置style="max-width:100%;height:auto;"

contentConv(content) {

    return content.replace(/<img[^>]*>/gi, function (match, capture) {

      return match.replace(/style\s*?=\s*?([‘"])[\s\S]*?\1/ig, 'style="max-width:100%;height:auto;"') // 替换style

    });

}

阅读全文

与richtext代码怎么写相关的资料

热点内容
夏普M550N错误代码F2 浏览:517
pdf文件只显示首页 浏览:486
什么叫未接种数据要清零 浏览:903
怎么注册算命网站 浏览:125
linux文件太大 浏览:74
iphone系统怎么清除系统数据 浏览:413
蓝牙开机找不到文件 浏览:709
比特币压缩文件格式 浏览:366
游戏程序编程要报考哪些 浏览:839
g49段削怎么编程 浏览:280
电脑传到微信的文件在哪里找 浏览:460
ftp文件下载 浏览:940
word页眉第几节 浏览:104
数控编程码g48是什么意思 浏览:234
word保存文件文件名无效 浏览:162
iphone5蜂窝移动网络 浏览:750
苹果录音文件怎么弄到主页 浏览:325
海信手机数据线是多少号 浏览:331
系统维护公司如何解决网络问题 浏览:123
苹果手机美版如何设置app不联网 浏览:618

友情链接