Wangeditor5富文本上传设置图片默认大小 eg: 设置宽度为30%

        const imgRegEx = /<img.*?>/gi;

		const handleChange = (editor) => {
			console.log('change:', editor.getHtml())
			const richText = valueHtml.value
			valueHtml.value = richText.replace(imgRegEx, (match) => {
				console.log(match)
				return match.replace(/<img/, '<img style="width:30%;"');
			});
			emit('watchTxt', editor.getHtml())
		}

posted @ 2024-04-18 19:18  Felix_Openmind  阅读(196)  评论(0编辑  收藏  举报