我有以下代码来发出 ajax 请求,并且成功和错误事件都被调用。这在 Opera 和 Chrome 中间歇性发生,但在 IE8 中没有(我无法访问更高版本的 mo 来检查)。textStatus 参数显示错误,但 errorThrown 参数为空。responseHeader 为空。
$.ajax({
type: "POST",
url: "ajax/check_login.php",
data: $(form).serialize() + "&session_key=<?php echo session_id(); ?>" + "&role=" + refer,
timeout: 3000,
success: function(resp) {
if (resp == 'error') {
$('#login_error').html('Invalid login');
} else {
if (refer == 'customer') {
self.location='book-mot.php';
} else {
self.location='admin.php';
}
}
},
error: function (request, textStatus, errorThrown) {
alert(request.getResponseHeader('Status'));
alert('text status: ' + textStatus + ' errorThrown: ' + errorThrown);
}
});
return false;
}
});
该代码在成功登录后将用户重定向到适当的位置,但它首先显示错误函数中的警报框。
非常感谢您提供的任何帮助