Ajax页面跳转

Posted 旧爱久居于心

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ajax页面跳转相关的知识,希望对你有一定的参考价值。

<script type="text/javascript" >
    $(document).ready(function () {
            $(".btnOrder1").click(function () {
                var id = $(this).attr("title");
                       var oper = "check";
                       $.ajax({
                           type: "post",
                           url: "dMenuPage.aspx",
                           data: "&id=" + id ,
                           dataType: "Text",
                           success: function (data) {
                              window. location.href =‘dShopCart.aspx‘;
                           }
                    });
             });
     });

</script>

如果要传递参数则window.location.href =‘dShopCart.aspx?id=‘+id;
















以上是关于Ajax页面跳转的主要内容,如果未能解决你的问题,请参考以下文章

为啥我的ajax请求返回的页面不跳转

ajax删除数据(不跳转页面)

jquery的ajax提交后,会跳转页面

javaweb利用ajax使登录窗口不跳转页面实现对账号密码的判断

如何减少页面之间跳转的延迟(片段/活动)

vue使用vue构建多页面应用