天天看点

兼容console.log

怎么办呢?

在js文件最前面添加如下js代码:

兼容console.log

if (window.console === undefined) {  

    console = {  

        log: function () {  

        }, info: function () {  

        }, debug: function () {  

        }  

    };  

}  

继续阅读