码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2020-04-01 11:20:35      阅读:348      评论:0      收藏:0      [点我收藏+]

标签:fine   error:   content   初始化   报错   editor   代码   编辑器   class   

解决方案

报错的代码片段↓


//初始化编辑器
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

标签:fine   error:   content   初始化   报错   editor   代码   编辑器   class   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!