我有一些 ajax 调用,我想在其中添加处理程序以防出现错误。我找到了“错误”处理程序,但这不起作用,即当互联网连接丢失时。这些案件是否有第二个处理程序?
$.ajax({
type: "GET",
url: "dosomethink.php",
success: function (data) {
$('#abc').html(data);
},
error: function (xhr, ajaxOptions, thrownError) {
alert(xhr.status);
alert(thrownError);
}
});