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


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM