部分情况下,IE中如果控制台没有开启,打印console.log可能会报错,一下为兼容方案:
if(window.console && console.log) { console.log(msg); }