我有一些ajax调用,我想在发生错误时添加处理程序。我找到了“错误”处理程序,但这不起作用,即当互联网连接丢失时。这些案件是否有第二个处理程序?
$.ajax({
type: "GET",
url: "dosomethink.php",
success: function (data) {
$('#abc').html(data);
},
error: function (xhr, ajaxOptions, thrownError) {
alert(xhr.status);
alert(thrownError);
}
});
答案 0 :(得分:0)
如果使用超时和错误方法
,该怎么办?$.ajax({type: 'GET',url: '/controller/action',timeout: 15000,success: function(data) {},error: function(XMLHttpRequest, textStatus,errorThrown) {}});