美文网首页
js兼容性一

js兼容性一

作者: 笨_不重要 | 来源:发表于2018-09-12 15:56 被阅读0次

    一、解决IE8 不支持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;
    })();
    

    相关文章

      网友评论

          本文标题:js兼容性一

          本文链接:https://www.haomeiwen.com/subject/kgavgftx.html