Ckeditor Multi Instance in Ajax Feb 25th, 2013 7:54 pm 初始化ckeditor后再用ajax刷掉页面,如果此时再次初始化它就会报错,说你要初始化的那个已经存在了。。。 此时需要检测一下是否已经存在,如果存在就remove掉: 1 2 3 4 5 6 if(CKEDITOR.instances['description']) { CKEDITOR.remove(CKEDITOR.instances['description']); } CKEDITOR.replace('description') 其中description是一个textarea的name。