ueditor 前端 获图片地址

阅读更多

用的ueditor 1.4.3版本,需要用到提供的监听,但是单独上传图片没有提供监听,所以需要自己在ueditor.all.js里添加一个,位置是me.execCommand('inserthtml', 'catch前面 me.fireEvent('afterUpLoadImage',json);

afterUpLoadImage自己随便命名,json是返回的json数据,

然后在页面

var ue = UE.getEditor('editor');

ue.addListener('afterUpLoadImage',function(type,json){

console.log(json);

})

 

批量上传有官方提供的

me.fireEvent('afterinsertimage', opt);

opt是个object数组,这个地方必须点击确认后才会返回数据,因为毕竟批量的是ifame里加载的一个html

 

你可能感兴趣的:(ueditor)