首页 > 移动平台 > 详细

uniapp富文本编辑器图片宽度溢出解决方法

时间:2020-07-24 21:21:29      阅读:257      评论:0      收藏:0      [点我收藏+]
<rich-text class="rich-text" :nodes="dataList.activityDetails | formatRichText"></rich-text>
filters: {
            formatRichText(html) { //控制小程序中图片大小
                let newContent = html.replace(/<img[^>]*>/gi, function(match, capture) {
                    match = match.replace(/style="[^"]+"/gi, ‘‘).replace(/style=‘[^‘]+‘/gi, ‘‘);
                    match = match.replace(/width="[^"]+"/gi, ‘‘).replace(/width=‘[^‘]+‘/gi, ‘‘);
                    match = match.replace(/height="[^"]+"/gi, ‘‘).replace(/height=‘[^‘]+‘/gi, ‘‘);
                    return match;
                });
                newContent = newContent.replace(/style="[^"]+"/gi, function(match, capture) {
                    match = match.replace(/width:[^;]+;/gi, max-width:100%;).replace(/width:[^;]+;/gi, max-width:100%;);
                    return match;
                });
                newContent = newContent.replace(/<br[^>]*\/>/gi, ‘‘);
                newContent = newContent.replace(/\<img/gi,
                    <img style="max-width:100%;height:auto;display:inline-block;margin:10rpx auto;");
                return newContent;
            }
        },

 

uniapp富文本编辑器图片宽度溢出解决方法

原文:https://www.cnblogs.com/zjxiang008/p/13373370.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!