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

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

时间:2016-03-13 14:31:20      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:

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

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

技术分享


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



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

标签:

原文地址:http://www.cnblogs.com/mengfanrong/p/5271835.html

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