ajax执行成功后可以跳转到另一个页面吗
1 回答
www说
TA贡献1775条经验 获得超8个赞
是可以的。
1 2 3 4 5 6 7 8 9 10 | 例如: $.ajax({ type:"post", url:url, data:{xxx:xx}, dataType: "json", success : function(data){ window.location.href="跳转的url,后边也可以拼接点data中数据作为参数"; } }); |
1 | 如果是需要跳转到另外的页面,也可以用window.open(url); |
- 1 回答
- 0 关注
- 2531 浏览
添加回答
举报
0/150
提交
取消