UEditor 在ie中报console未定义解决方案

解决办法:   
               1.注释掉该代码
               2、或者加入如下代码即可,本人已经测试过,没有问题。
      window.console = window.console || (function(){  
        var c = {}; c.log = c.warn = c.debug = c.info = c.error = c.time = c.dir = c.profile  
        = c.clear = c.exception = c.trace = c.assert = function(){};  
        return c;  
      })();  

posted @ 2015-05-23 11:02  haishu  阅读(828)  评论(1编辑  收藏  举报