我想調試一個應用程序,並努力在Firebug中顯示我引發的錯誤。爲什麼我的JavaScript投影不能在Firebug中工作?
,如果我有這樣的事情:
if (!jQuery.fn.drag){
console.log("found an error");
throw new Error("file xyz has not loaded");
}
問:
爲什麼,在控制檯火災,因爲有一個錯誤,但是我的自定義throw
不螢火蟲報什麼?
感謝
我想調試一個應用程序,並努力在Firebug中顯示我引發的錯誤。爲什麼我的JavaScript投影不能在Firebug中工作?
,如果我有這樣的事情:
if (!jQuery.fn.drag){
console.log("found an error");
throw new Error("file xyz has not loaded");
}
問:
爲什麼,在控制檯火災,因爲有一個錯誤,但是我的自定義throw
不螢火蟲報什麼?
感謝
在這之前你沒有得到一個錯誤,就像'JQuery是未定義的?你是否將'jQuery'手動別名爲'Jquery'? – bfavaretto
對不起。錯字。它應該是jQuery。 – frequent
發生什麼錯誤? – Musa