2013-01-23 85 views
0

我使用try,catch,進行調試,但警告不會創建異常。如何獲得所有JavaScript警告和錯誤輸出div?如何捕捉所有JavaScript警告和錯誤到輸出div?

已更新: 如果瀏覽器支持Afaik日誌,如何獲取該日誌到字符串或輸出div?

更新: 我找到怎樣的方式來做到這一點: 我可以重新加載的console.log功能到我的自定義函數的調用本地的console.log功能。

+5

爲什麼不直接使用瀏覽器的調試控制檯? –

+0

你能告訴我們你的代碼嗎? –

+0

Afaik調試器警告不能從javascript – Bergi

回答

0

首先,擺脫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 barie webDeveloper

+0

獲取日誌中發佈的錯誤消息對我知道那個。我問了警告,通過console.warn創建:-) – xercool

+0

我看到,這是我第一次聽到有關console.warn() –

+0

您使用的是JavaScript控制檯嗎?我需要重複所有的錯誤,警告,筆記 – xercool

0

我明白自己爲什麼會有人想要的東西實際發生時文件中出現錯誤時。上面的答案只是說,你會使用開發工具,但我需要的東西實際發生,並經過一些搜索,這裏是我發現...

如果你想趕上所有錯誤通過,你可以在上面把下面的代碼放到你的文件中,最好:

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