使用UEditor 报错Cannot read property 'nodeType' of undefined 解决办法
Posted linhuaming
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用UEditor 报错Cannot read property 'nodeType' of undefined 解决办法相关的知识,希望对你有一定的参考价值。
报如下错误
解决办法:
//对编辑器的操作最好在编辑器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 解决办法的主要内容,如果未能解决你的问题,请参考以下文章
ueditor百度富文本编辑器linux下报错: class path resource [config.json] cannot be resolved to absolute file path
vue 在使用vue-router报错 Cannot read property matched
解决vue3中使用echart echart报错:Cannot read properties of undefined (reading ‘type‘)
解决vue3中使用echart echart报错:Cannot read properties of undefined (reading ‘type‘)
vue添加组件报错 Cannot read properties of undefined (reading ‘toLowerCase‘)