使用UEditor 报错Cannot read property 'nodeType' of undefined 解决办法

若如初见. 提交于 2019-12-06 06:43:26

报如下错误

解决办法:

//对编辑器的操作最好在编辑器ready之后再做
ue.ready(function() {
})
<!-- 实例化编辑器 -->
<script type="text/javascript">
$(function(){
     var ue = UE.getEditor("container",{
                autoHeight: false
     });
     /对编辑器的操作最好在编辑器ready之后再做
     ue.ready(function() {
         //设置编辑器的内容
         ue.setContent('hello');
         //获取html内容,返回: <p>hello</p>
         var html = ue.getContent();
         alert(html)
         //获取纯文本内容,返回: hello
         var txt = ue.getContentTxt();
         alert(txt);
    });
});
</script>
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!