我使用try,catch,進行調試,但警告不會創建異常。如何獲得所有JavaScript警告和錯誤輸出div?如何捕捉所有JavaScript警告和錯誤到輸出div?
已更新: 如果瀏覽器支持Afaik日誌,如何獲取該日誌到字符串或輸出div?
更新: 我找到怎樣的方式來做到這一點: 我可以重新加載的console.log功能到我的自定義函數的調用本地的console.log功能。
我使用try,catch,進行調試,但警告不會創建異常。如何獲得所有JavaScript警告和錯誤輸出div?如何捕捉所有JavaScript警告和錯誤到輸出div?
已更新: 如果瀏覽器支持Afaik日誌,如何獲取該日誌到字符串或輸出div?
更新: 我找到怎樣的方式來做到這一點: 我可以重新加載的console.log功能到我的自定義函數的調用本地的console.log功能。
對於IE瀏覽器的JavaScript調試就可以按照本指南:
http://msdn.microsoft.com/en-au/library/ie/gg699336(v=vs.85).aspx
請記住,開發工具窗口必須加載頁面的警告,並出現在錯誤之前打開安慰。
對於WebKit的,(鉻,Safari瀏覽器)開發者控制檯 - 這裏是一個指南:
https://developers.google.com/chrome-developer-tools/docs/console
...火狐也有一個控制檯
首先,擺脫try try。在調試時不要使用try catch。第二,你不想把錯誤輸出到div,使用firebug或者inspector - console.log();
第三,如果你真的想這樣做:你可以使用嘗試捕捉,並在catch,如果你使用jQuery使用類似
$('body').append($('div').html('variable for error message goes here'));
OR
document.getElementByTagName("body").appendChild(document.createTextNode("variable for error message goes here"));
如果你有平原javascript
編輯:嘗試查找ie debug bar ,ie webDeveloper
我明白自己爲什麼會有人想要的東西實際發生時文件中出現錯誤時。上面的答案只是說,你會使用開發工具,但我需要的東西實際發生,並經過一些搜索,這裏是我發現...
如果你想趕上所有錯誤通過,你可以在上面把下面的代碼放到你的文件中,最好:
window.onerror = function(errorMsg, url, lineNumber){
// any action you want goes here
// errorMsg is the error message itself.
// url should be the file presenting the error, though i have
// found that it only presents to me the address of the site.
// lineNumber is the line number the error occoured on.
// here is an example of what you could do with it:
alert("Error in " + url + " at " + lineNumber + ":\n" + errorMsg);
}
我自己,像輸出誤差爲包含所有這些,但你可以做字面上什麼此信息的DIV,你可以使用任何其他傳遞給函數的字符串。
這裏,如果你拋出一個錯誤,用上面的代碼按鈕可能會發生什麼樣的例子:
Error in your.site.here at 1:
Uncaught ReferenceError: foo is not defined
爲什麼不直接使用瀏覽器的調試控制檯? –
你能告訴我們你的代碼嗎? –
Afaik調試器警告不能從javascript – Bergi