IE8下提示'console'没有定义错误

时间:2024-01-04 18:23:38

在开发的过程中因为调试的原因,在代码中增加console.info("xxxx"),而未进行删除

在IE8下測试该代码所在的页面报错,例如以下:

IE8下提示'console'没有定义错误

须要注意的是,使用console对象查看对象信息,在IE8浏览器下未打开开发者工具(F12)的情况下

会报'console'没有定义错误。

解决的方法:1、打开开发者调试工具(F12)

                   2、凝视掉该代码

3、或者增加例如以下代码

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;
})();