Google Chrome不会显示回复

时间:2018-01-14 14:02:33

标签: javascript google-chrome google-chrome-devtools

我刚刚注意到谷歌浏览器开发者控制台在某些情况下没有显示来自服务器的任何响应,而其他浏览器如firefox则显示:

enter image description here

火狐:

enter image description here

我正在做一个正常的ajax请求:

    $("#logout").click(function() {

        $.ajax({
            url: "ajax.php",
            method: "POST",
            data: {
                action: 'logout'
            },
            success: function(response) {
                alert(response);
                window.location.replace('index.php');
            }
        }); 
    });

这是一个错误还是我的错?

0 个答案:

没有答案