UEditor使用报错Cannot set property 'innerHTML' of undefined

Admin 2018-07-09 12:16:43 JavaScript

1、使用UEditor的setContent的时候报错,报错代码如下Uncaught TypeError: Cannot set property ‘innerHTML’ of undefined。

     错误的原因是没有等UEditor创建完成就使用UEditor的setContent函数了,可以通过如下两种代码解决:

1、ueditor.addListener("ready", function () { 
    ueditor.setContent('str'); 
   });

2、ueditor.ready(function() { 
    ueditor.setContent('str'); 
   });

例如:

var ue = UE.getEditor('containerId');    
var a  = "<%= info.C_Introdution || '' %>";
a = escape2Html(a);
$("#introdution").html(a);    

function escape2Html(str) {
  if(str.indexOf("&#34;")){
      str = str.replace(/&#34;/ig,"&quot;");
  }   
  var arrEntities={'&#34;':'"','lt':'<','gt':'>','nbsp':' ','amp':'&','quot':'"'};        
  return str.replace(/&(lt|gt|nbsp|amp|quot);/ig,function(all,t){return arrEntities[t];});
}

ue.ready(function() {
  ue.setContent(a);
  ue.addListener("contentchange", function () {
     $("#introdution").html(ue.getContent());
  })
});
相关文章
最新推荐