IE兼容模式不支持console的解决办法

在script标签内添加如下代码即可:

1 window.console = window.console || (function(){ 
2     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(){}; 
3     return c; 
4 })();

 

posted @ 2020-08-26 09:18  敲代码的小浪漫  阅读(729)  评论(0编辑  收藏  举报