IE8提示‘console’未定义错误的解决方案

IE8提示‘console’未定义错误的解决方案

2016-11-02 / 0 评论 / 93 阅读 / 正在检测是否收录...
温馨提示:
本文最后更新于2021年10月27日,已超过905天没有更新,若内容或图片失效,请留言反馈。

在js末尾加入代码

// IE8 console.log() 未定义错误
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;
})();

0

评论 (0)

取消