关于javascript的HTTP响应代码

时间:2014-05-27 03:39:31

标签: javascript http-headers http-response-codes

如何在javascript上的虚假链接上执行HTTPget响应代码?

我真的不知道HTTP响应代码是什么用于。

2 个答案:

答案 0 :(得分:0)

来自Use javascript to check http status codes

$(function() {
  var url = "some_url";
  $.ajax(url,
  {
     statusCode: {
     404: function() {
        alert('page not found');
     }
  }).done(function( msg ) {
     alert( "Data Saved: " + msg );
  });
});  

参见http://en.wikipedia.org/wiki/List_of_HTTP_status_codes 有关这些含义的详细信息

答案 1 :(得分:0)

您也可以尝试这种方式

$( document ).ready(function() {
  var url = "/customers/customer_list";
  $.ajax({url:url,
    data: { name: "John", location: "Boston" }
    type: "GET",
    dataType: "html"
    success:function(result){
      alert(result);
    }});
}});