標籤雲

搜尋此網誌

2008/07/10

JavaScript 的 Error 物件

try..catch..finally:
try{
.....
}catch(e){ //錯誤處理
.....
}finally{
.....
}

throw:
throw(exception);


Error 物件的屬性:
number 錯誤碼(32bit)
message 錯誤說明字串
description 錯誤描述


onerror 事件:
onerror=handleErr
function handleErr(msg,url,l)
{
//Handle the error here
return true or false
}

沒有留言: