微信小程序富文本table超出宽度处理

处理思路:

使用正则删除table中的width属性。

//去除table的宽度
content = content.replace(/]*>/gi, function (match, capture) {
  return match.replace(/width=\"(.*)\"/gi, '');
});
formatRichText(html) {

				/* 
				 * 处理富文本里的图片宽度自适应
				 * 1.去掉img标签里的style、width、height属性
				 * 2.img标签添加style属性:max-width:100%;height:auto
				 * 3.修改所有style里的width属性为max-width:100%
				 * 4.去掉
标签 * @param html * @returns {void|string|*} */ let newContent = html.replace(/]*>/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(/]*\/>/gi, ''); newContent = newContent.replace(/\]*>/gi, function(match, capture) { return match.replace(/width=\"(.*)\"/gi, ''); }); return newContent; },

uni-app用法:


                
            

 js用法:

this.content = this.formatRichText(res.data.data.content)

你可能感兴趣的:(微信小程序,小程序)