エラー処理の try/catch を使用して Ajax エラーをキャッチしようとしていますが、うまくいきません。これが私のコードです:
var ajaxrequest=null
if (window.ActiveXObject){
try {
ajaxrequest=new ActiveXObject("Msxml2.XMLHTTP")
}
catch {
try{
ajaxrequest=new ActiveXObject("Microsoft.XMLHTTP")
} //end inner try
catch {
alert("NOT WORKING!!")
} //end inner catch
} //end outer catch
}
else if (window.XMLHttpRequest) // if Mozilla, Safari etc
ajaxrequest=new XMLHttpRequest()
ajaxrequest.open('GET', 'inventory.php', true) //do something with request
私は何を間違えましたか?