Ajax回调函数重定向另一个页面

时间:2015-05-11 13:59:19

标签: javascript jquery ajax

我需要在header.jsp中捕获901个错误代码以全局处理ajax错误。

在浏览器控制台中我得到:

  

GET https://localhost:8443/SSApp/Pan/report?&vessel ... namax%20Tanker%20Pool%20Limited& rptTitle = Activity%20Report& _ = 1431351700771 901(OK)

如何根据我们是否收到901错误代码来捕获和重定向?

1 个答案:

答案 0 :(得分:0)

您可以使用ajax状态代码:

$.ajax({
  statusCode: {
    400: function() {
      alert('400 status code! user error');
    },
    901: function() {
      alert('error 901');
    }
  }
});