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

posted @ 2020-04-01 10:18  zh89233  阅读(1801)  评论(0编辑  收藏  举报