ueditor禁用编辑的时候报错:Uncaught TypeError: Cannot read property 'contentEditable' of undefined(代码片

Posted love-zf

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ueditor禁用编辑的时候报错:Uncaught TypeError: Cannot read property 'contentEditable' of undefined(代码片相关的知识,希望对你有一定的参考价值。

解决方案

报错的代码片段↓


//初始化编辑器
var conEditor = UE.getEditor(‘id_Test‘);       
//编辑器.禁用
conEditor.setDisabled();


修复后代码片段↓


//初始化编辑器
var conEditor = UE.getEditor(‘id_Test‘);       
//对编辑器的操作最好在编辑器ready之后再做		
conEditor.ready(function () {
	//编辑器.禁用
	conEditor.setDisabled();
})

以上是关于ueditor禁用编辑的时候报错:Uncaught TypeError: Cannot read property 'contentEditable' of undefined(代码片的主要内容,如果未能解决你的问题,请参考以下文章

uEditor富文本编辑器

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

UEditor 报错 uParse is not defined 的解决方案

KindEditor富文本编辑器 控制台js报错的问题 Uncaught TypeError: Cannot read property 'getSelection' of null(

ueditor php版 编辑器 上传图片和视频出现报错’服务器返回出错’ 大哥大姐知道是啥原

ueditor的用法