ajax error

$.ajax({
        url: '/cxz/add',            
        success: function (data) {
            alert(data);
        },
        error: function (xhr, textStatus, errorThrown) {
            /*错误信息处理*/
        alert("进入error---");
        alert("状态码:"+xhr.status);
        alert("状态:"+xhr.readyState);//当前状态,0-未初始化,1-正在载入,2-已经载入,3-数据进行交互,4-完成。
        alert("错误信息:"+xhr.statusText );
        alert("返回响应信息:"+xhr.responseText );//这里是详细的信息
        alert("请求状态:"+textStatus);                 alert(errorThrown);                 alert("请求失败");     } });

 

你可能感兴趣的:(ajax error)