我刚刚注意到谷歌浏览器开发者控制台在某些情况下没有显示来自服务器的任何响应,而其他浏览器如firefox则显示:
火狐:
我正在做一个正常的ajax请求:
$("#logout").click(function() {
$.ajax({
url: "ajax.php",
method: "POST",
data: {
action: 'logout'
},
success: function(response) {
alert(response);
window.location.replace('index.php');
}
});
});
这是一个错误还是我的错?