TypeError: me.body is undefined 或 Uncaught TypeError: Cannot set property 'innerHTML' of undefined 錯(cuò)誤的原因是沒有等UEditor創(chuàng)建完成就使用UEditor的setContent函數(shù)了,可以通過如下代碼解決
方法一:
ueditor.addListener("ready", function () {
ueditor.setContent('初始值');
});
方法二:
ueditor.ready(function() {
ueditor.setContent('初始值');
});