本文主要讲解一种方式解决ckeditor编辑器上传的图片时候会添加一个默认的图片的宽高等style属性
首先找到ckeditor编辑器的image插件的js文件.在plugins/image/dialogs/image.js
打开后查找:
this.imageElement.setAttribute("style")||this.imageElement.removeAttribute("style");
将中间的||改为&&
this.imageElement.setAttribute("style")&&this.imageElement.removeAttribute("style");
如图:
这样就会删除新增图片的style属性,修改后注意清空浏览器缓存,否则看不到效果哟。
https://www.leftso.com/article/104.html