0
我用純JavaScript(無jQuery和其他人不...)工作,我正在寫一些代碼,使一個AJAX請求。我注意到,當網絡連接失敗,在Chrome,Firefox和IE那些在xmlhttp.onreadystatechange:
檢測Ajax請求無連接狀態和狀態
xmlhttp.readyState=4
xmlhttp.status=0
的值,因爲我想處理網絡連接問題,這是一個很好的辦法做到這一點?
xmlhttp.onreadystatechange=function(){
if(xmlhttp.readyState==4 && xmlhttp.status==0){//No internet connection
//code to handle network error
}
}
此代碼似乎爲我工作,但我沒有看到任何文件abuot這個,無處!你認爲這是一個可靠的解決方案嗎?