2013-12-12 70 views

回答

3

檢查狀態欄上的JS錯誤圖標。你可能得到了一些關於console.log不存在的內容,因爲它不會存在,直到你打開開發人員工具(在IE中)。

在您的代碼中修復此問題的方法是檢查是否存在console.log,如果它不存在,請創建一個。

if (typeof console !== 'object' || typeof console.log !== 'function') { 
    console.log = function (arg) { 
     //now you can alert the argument or do whatever even when console.log isn't natively supported 
    } 
} 
+0

實際上,任何以'console'開頭的東西,儘管絕大多數時間都是'console.log' –

相關問題