码迷,mamicode.com
首页 > 其他好文 > 详细

[转载]UEditor报错TypeError: me.body is undefined

时间:2015-06-16 18:34:04      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:

本文转载来自: UEditor报错TypeError: me.body is undefined

 

今天在使用UEditor的setContent的时候报错,报错代码如下 TypeError: me.body is undefinedUncaught TypeError: Cannot set property ‘innerHTML‘ of undefined 错误的原因是没有等UEditor创建完成就使用UEditor的setContent函数了,可以通过如下代码解决 方法一:

ueditor.addListener("ready", function () {
  ueditor.setContent(‘UEditor报错TypeError: me.body is undefined‘);
});

 

方法二:

ueditor.ready(function() {
    ueditor.setContent(‘UEditor报错TypeError: me.body is undefined‘);
});

 

[转载]UEditor报错TypeError: me.body is undefined

标签:

原文地址:http://www.cnblogs.com/towerking/p/4581331.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!