IE8下console未定义问题

在全局环境下写入以下js代码:

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;
})();

 

posted @ 2018-02-01 09:08  pding  阅读(344)  评论(0编辑  收藏  举报