`

uncaught exception: [CKEDITOR.editor] The instance “xxxx” already exists

    博客分类:
  • js
 
阅读更多

主要防止加载同一个id,如下代码

<span>
                 <textarea cols="80" id="content2" name="content2" rows="10" >${email.content?default('')}</textarea>
					 <script type="text/javascript">
                      
                    //添加ckeditor编辑器;
                       var editor ;
                        if(!CKEDITOR.instances.content2){  //判定content2是否存在
                             editor= CKEDITOR.replace("content2");
                        }else{
                               addCkeditor("content2");
                        }
                         
                    function addCkeditor(id){
                        var editor2 = CKEDITOR.instances[id];
                        if(editor2) editor2.destroy(true);//销毁编辑器 content2,然后新增一个
                            editor = CKEDITOR.replace(id);
                    }
                     </script>
                  </span>
                 

 有一些代码参考:http://www.toobull.com/archives/177.html

分享到:
评论

相关推荐

    Uncaught DOMException:

    标题“Uncaught DOMException:”通常出现在JavaScript编程中,指的是在执行代码时遇到了一个未捕获的DOM(Document Object Model)异常。这个错误通常意味着在访问或操作DOM元素时发生了问题,可能是由于尝试访问不...

    解决jquery插件:TypeError:$.browser is undefined报错的方法

    知识点: 1. jQuery插件报错问题:在使用jQuery插件时可能会遇到"TypeError: $.browser is undefined"的报错,这主要是因为从jQuery 1.9版本开始,jQuery移除了$.browser和$.browser.version这两个用于获取浏览器...

    UncaughtException不让Android应用异常退出

    "UncaughtException不让Android应用异常退出"这个主题,就是关于如何处理程序中的未捕获异常,以防止应用突然崩溃,从而提升用户体验。在这个问题上,我们可以从以下几个方面来探讨: 1. **...

    javax.activation.UnsupportedDataTypeException: no object DCH for MIME type

    ORA-29532: Java call terminated by uncaught Java exception: javax.mail.MessagingException: IOException while sending message; nested exception is: javax.activation.UnsupportedDataTypeException: no ...

    (最终解决)java.lang.UnsatisfiedLinkError解决尝试

    Java中的`java.lang.UnsatisfiedLinkError`是一个常见的运行时异常,通常出现在Java试图加载本地(C或C++)库但找不到相应的库文件时。这个错误可能是由于多种原因引起的,如库路径设置不正确、库文件不存在或者版本...

    java遇到的问题txt

    当尝试运行某个Java文件时,编辑器提示“Editor does not contain a main type”。这意味着当前选中的Java文件不是一个有效的入口点,因为它可能缺少`public static void main(String[] args)`方法或者不是一个公共...

    domain-middleware, 在 `domain` 模块中,用于连接的`uncaughtException` 中间件.zip

    domain-middleware, 在 `domain` 模块中,用于连接的`uncaughtException` 中间件 域中间件 面向连接的uncaughtException 中间件,基于 domain 模块。尝试制作更好的连接域 MODULE 。警告:不要忽略错误 ! ...

    handlebars-v2.0.0.js

    handlebars-v2.0.0.js

    微信小程序云开发之云函数详解

    在上一章我们已经配好了环境,这章我们按照模板的顺序去执行提供的案例,对官方文档进行一个实践操作。 ...云函数 调用失败 Error: errCode: -404011 cloud function execution error | errMsg: cloud.callFunction:...

Global site tag (gtag.js) - Google Analytics