百度富文本编辑器Ueditor上传图片时标签中添加宽高

主要解决:

变成:

"

height="300px" />

"


解决方法:

找到 ueditor.all.js

/*==================自己添加的代码====================*/ 

  var width='';var height='';// 创建对象 

  var img =new Image();// 设置图片的src 

 img.src =link;//console.log("link:"+link); 

 img.onload =function(){

    console.log('width:'+img.width+',height:'+img.height);

    width=img.width;

    height=img.height;

    loader.setAttribute('width',width);

    loader.setAttribute('height',height); 

 };

/*===================结束========================*/


你可能感兴趣的:(百度富文本编辑器Ueditor上传图片时标签中添加宽高)