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

仿用UEditor的setContent的时候报错,报错代码如下Uncaught TypeError: Cannot set property ‘innerHTML’ of undefined。调试ueditor.config.js,ueditor.all.js 提示me.body is undefined。(我就纳了闷儿了!同样的使用那个行这个咋就不行,那个有body,view,这个咋就这么少!【我还查看了插件的内部函数,真是个good媛~】)错误的原因是没有等UEditor创建完成就使用UEditor的setContent函数了,可以通过如下两种代码解决 :

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

ps:

 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());
        })
    });

js转换html转义字符

评论 9
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值