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



posted @ 2017-07-14 17:55  佳明兄  阅读(308)  评论(0编辑  收藏  举报

内容仅为参考使用,不保证内容的正确性,通过使用本博客内容随之而来的风险与作者无关。内容如有侵权,请通知删除!