在IE8 下console.log()会报错,
解决方式如下:
1.注释掉
2.加入以下代码
<pre name="code" class="html"> 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;
})();