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

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

时间:2019-12-01 16:43:50      阅读:306      评论:0      收藏:0      [点我收藏+]

标签:UNC   cannot   src   设置   获取   nodetype   image   tco   rip   

报如下错误
技术图片

解决办法:

//对编辑器的操作最好在编辑器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>

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

标签:UNC   cannot   src   设置   获取   nodetype   image   tco   rip   

原文地址:https://www.cnblogs.com/linhuaming/p/11966247.html

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