首页 > 代码库 > Jquery 全局错误处理

Jquery 全局错误处理

$.ajaxSetup({    success: function (result, status, request) {        if (typeof (request) != ‘undefined‘) {            var responseText = request.getResponseHeader("X-Responded-JSON");            if (responseText != null) {                window.tipError(‘系统提示‘, ‘登录超时,请重新登录‘, null, null, function () {                    window.location.href = http://www.mamicode.com/window.location.href;>

  不用每一次使用Ajax都需要处理错误消息。

Jquery 全局错误处理