IE 一直比较奇葩。
IE8、9 对 console 的定义跟其他浏览器都不一样,甚至跟IE的其他版本也不一样。
你可以选择注释掉包含 console 的代码,也可以选择加上一段:
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不支持CSS3和HTML5一些js对象会引用无效
ie8不支持console方法