天天看點

相容console.log

怎麼辦呢?

在js檔案最前面添加如下js代碼:

相容console.log

if (window.console === undefined) {  

    console = {  

        log: function () {  

        }, info: function () {  

        }, debug: function () {  

        }  

    };  

}  

繼續閱讀