我应该如何从服务器回显哪些数据来重新定位我的页面?比方说,假设这是我的jQuery:
$.ajax({
type: "POST",
url : '<?php echo base_url() ?>Admin/AddNotice',
data: {noticeTitle: $('#title').val(),noticeDesc : $('#desc').val() },
success: function(msg){
//here i want to redirect..fill in the blank please.
}
});
答案 0 :(得分:13)
这很简单:
window.location = "http://www.google.com";
)
答案 1 :(得分:7)
使用:
success: function(msg){
window.location = "page.html";
}
答案 2 :(得分:5)
我不知道“ajaxically redirect”是什么意思,但如果你只是想让浏览器重定向到另一个页面,你可以使用window.location = 'http://wherever/you/want/to/go/';