Я использую jQuery для отправки HTTP-запроса.Ниже приведен код.Я хочу получить код состояния HTTP-запроса.
Кто-нибудь знает, как получить статус?
$(document).ready(function(){
var url="http://www.google.com";
$.get(url, function(data,status) {
alert(status);
// This doesn't alert me status
// I want to alert request status code as "200" i.e. ok
});
// on Failure also need the status code of this request.
});