`window.location`不会在Ajax中进行重定向。

huangapple 未分类评论46阅读模式
英文:

window.location does not Redirect with Ajax

问题

$.ajax({
    url: 'assets/php/action.php',
    method: 'post',
    data: $("#register-form").serialize() + '&action=register',
    success: function(response) {
        $("#register-btn").val('Sign Up');
        if (response === 'register') {
            alert("you will now be redirected");
            window.location = 'home.php';
        } else {
            $("#regAlert").html(response);
        }
    }
});
英文:

I have a page with several user controls that use Ajax. When I try to do window.location from this page, Ajax traps the call and does not allow the redirect.

               $.ajax({
                        url: 'assets/php/action.php',
                        method: 'post',
                        data: $("#register-form").serialize()+'&action=register',
                        success:function(response){
                            $("#register-btn").val('Sign Up');
                         //   console.log(response);
                         if(response === 'register'){
                             alert("you will now be redirected");
                             window.location = 'home.php';
                            }
                            else{ 
                            $("#regAlert").html(response);
                         }
                        }
                    });

答案1

得分: 0

请使用这个代码片段代替:window.location.href = 'home.php';

英文:

Use this rather window.location.href = 'home.php';

huangapple
  • 本文由 发表于 2020年7月23日 19:37:32
  • 转载请务必保留本文链接:https://java.coder-hub.com/63053344.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定