ajax 提交后无法跳转的问题
程序员文章站
2024-02-29 19:03:10
...
ajax 提交后不能进到success里面,不能跳转页面,之前以为是
window.location.href="/order.php";
$(window).attr("location","/order.php")
ajax要用 jq方式跳转才行
后来怎么调试都没办法跳转成功,然后在success
里面打印什么都不会出来,发现并没有进入success
里面
然后改了一下 dataType: "json"
把 json
改成 text
后发现可以了
$.ajax({
cache: true,
type: "get",
url: "/order.php",
data:{"trade_name":trade_name,"attribute":attribute,"number":number,"prices":prices},
dataType: "text",
async: false,
success: function(data) {
alert("1111");
// $(window).attr("location","/order.php")
window.location.href="/order.php";
}
});
这样就可以发送完ajax 请求后跳转页面
上一篇: Python向日志输出中添加上下文信息