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();
})

原文地址:https://www.cnblogs.com/love-zf/p/12610759.html