首页 > 代码库 > ajax请求成功或失败的参数

ajax请求成功或失败的参数

success:function(response, status, xhr){

},
error:function(xhr, errorText, errorType){
alert(errorText+":"+errorType); --error:not found
alert(xhr.status+":"+xhr.statusText);--404:not found
}

ajax请求成功或失败的参数