在成功的ajax调用中,我想刷新用户所在的当前页面。我试过下面但没有任何反应。查看chrome debug我看到没有错误,也没有任何网络活动。
get[1] = "module=ticket&ticketId=12345#"
我试过了:
success:function(result){
var url = location.href;
var get = url.split("?");
alert(get[1]);
window.location.href = "index.php?"+get[1];
}
以及:
success:function(result){
location.href = location.href;
}
和
success:function(result){
var url = location.href;
var get = url.split("?");
var myUrl = "index.php?"+get[1];
window.location.href =myUrl;
}
答案 0 :(得分:2)
如果您只想刷新当前页面,这应该有效:
window.location.reload()