2

我对ajax和jquery真的很陌生,所以请多多包涵。我目前正在构建一个小型应用程序,它将完成告诉您网站状态代码的基本任务,并根据返回的代码执行某些操作。我在网上找到了这个代码,如果 http 状态码是 404,它会返回“找不到页面”。

$(function() {
      var url = "http://www.google.com";
      $.ajax(url,
      {
         statusCode: {
         404: function() {
            alert('page not found');
         }
      }
   });   
});

但是,我怎样才能将原始状态代码值保存到变量中,而不是检查 404 状态代码?
谢谢!

4

1 回答 1

3

希望这样的事情可以帮助你交配.. :)

 error:function (xhr, ajaxOptions, thrownError){
          alert(xhr.status); 
           switch (xhr.status) {
              case 404:
                    // Desired Action.
              }
        } 

    complete: function(xhr, statusText){
           alert(xhr.status); 
    }

你可能会在下面的链接中获得很多信息

http://api.jquery.com/jQuery.ajax/

于 2013-11-11T02:30:12.573 回答