0
A
回答
1
如果你使用XHR使用處理程序。
var xhr = new XMLHttpRequest();
xhr.open('GET', "http://www.some.com", true);
xhr.onreadystatechange = handler;
xhr.send();
function handler(){
if (this.readyState == this.DONE)
{
if (this.status == 200 && this.responseXML != null)
{
var response = xhr.responseXML;
}
else{
console.log("status:" + xhr.status);
alert("xhr Errors Occured");
}
}
else
console.log("currently the application is at " + this.readyState);
}
並在Firebug內部處理程序中放置斷點。
相關問題
- 1. 的Javascript螢火蟲錯誤
- 2. 你如何看到螢火蟲錯誤?
- 3. 如何螢火蟲
- 4. 與螢火蟲jQuery的錯誤
- 5. 406錯誤的螢火蟲只
- 6. 螢火蟲
- 7. 如何停用螢火蟲?
- 8. backbone.js螢火蟲路由器錯誤
- 9. 螢火蟲返回不變nsLoginManager錯誤
- 10. javascript螢火蟲錯誤幫助
- 11. 什麼是螢火蟲錯誤$(平均
- 12. 螢火蟲拋出一個「$(」錯誤?
- 13. jquery 1.7.1導致螢火蟲錯誤
- 14. 螢火蟲顯示網絡錯誤
- 15. 螢火蟲錯誤:未找到元素
- 16. jquery ajax請求螢火蟲錯誤
- 17. 螢火蟲發現錯誤,不存在
- 18. 問題跟蹤什麼JavaScript導致螢火蟲jQuery UI錯誤
- 19. 如何設置xul像螢火蟲一樣的錯誤
- 20. 爲什麼螢火蟲指出我的代碼有錯誤?
- 21. 螢火蟲給我的OnClick函數語法錯誤
- 22. JavaScript確定的螢火蟲
- 23. 邊界jQuery的螢火蟲
- 24. 螢火蟲的修改?
- 25. 源代碼比由螢火蟲
- 26. 擴展螢火蟲(螢火蟲/ FBL未定義)
- 27. Linux:如何調試SIGSEGV?我如何追蹤錯誤來源?
- 28. 追蹤VS2k8錯誤信息的來源?
- 29. 我如何隱藏我的JSON請求顯示在螢火蟲
- 30. 如何在ie8中使用螢火蟲
也許使用console.log()進行調試。 – Subodh
如果您使用的是Firefox,請打開工具> Web開發人員> Web控制檯或錯誤控制檯,他們應該直接鏈接到警告/錯誤的代碼行 –