码迷,mamicode.com
首页 > 其他好文 > 详细

IE console报错

时间:2017-07-14 18:47:10      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:ges   http   win   except   null   err   dir   inline   image   

技术分享


需要注意的是,使用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; 
})();




IE console报错

标签:ges   http   win   except   null   err   dir   inline   image   

原文地址:http://www.cnblogs.com/DreamSeeker/p/7171725.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!