Jquery的ajax请求失败:error:function(){}

	$.ajax({
		type:'post',
		url:'',
		data:'',
		dataType:'json',
		success:function(data){
			alert(data.msg);
		},
		error:function(XMLHttpRequest, textStatus, errorThrown){
		    alert("请求对象XMLHttpRequest: "+XMLHttpRequest);
			alert("错误类型textStatus: "+textStatus);
			alert("异常对象errorThrown: "+errorThrown);
		   }
	});

(默认: 自动判断 (xml 或 html)) 请求失败时调用此函数。有以下三个参数:XMLHttpRequest 对象、错误信息、(可选)捕获的异常对象。如果发生了错误,错误信息(第二个参数)除了得到null之外,还可能是"timeout", "error", "notmodified" 和 "parsererror"。

function (XMLHttpRequest, textStatus, errorThrown) {
    // 通常 textStatus 和 errorThrown 之中
    // 只有一个会包含信息
    this; // 调用本次AJAX请求时传递的options参数
}


 
 

你可能感兴趣的:(javascript,Jquery)