avatar
@bangbang93

标签: ueditor

UEditor报Cannot read property 'innerHTML' of undefined

UEditor内会有一个iframe,所以如果刚刚使用

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

就进行

ue.setContent($('#content').val(), false);

的话

UEditor源码里setContent是这么写的

me=this;
me.body.innerHTML = (isAppendTo ? me.body.inn
...