使用JQueryEasyUI的時候,普通請求在shrio登錄超時的時候均可以正常跳轉,而ajax請求在登錄超時的時候就不跳轉,上網找了下資料,都表達的不明確,並且設置一大堆,還得寫過濾器。無心中找到JQuery設置全局 AJAX 默認選項。具體代碼以下!ajax
$.ajaxSetup({ complete:function(XMLHttpRequest,textStatus){ if(textStatus=="parsererror"){ $.messager.alert('提示信息', "登錄超時!請從新登錄!", 'info',function(){ window.location.href = 'login.jsp'; }); } else if(textStatus=="error"){ $.messager.alert('提示信息', "請求超時!請稍後再試!", 'info'); } } });