首页 > 代码库 > IE console报错

IE 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; 
})();
来源: http://www.xuebuyuan.com/2139615.html


null


IE console报错