我有以下代码可以正常工作但是按预期执行:
$(".switch_org").click(function(e){
var id = $(this).attr('id');
var orgID = id.split("_");
e.preventDefault();
$.cookie('current_organisation', orgID[1], { expires: 1, path: '/' });
window.location.replace("index.php");
});
Cookie设置正常但页面未重定向到index.php 它只是重新加载同一页面。难道我做错了什么?我可以添加一个额外的步骤,以便它重定向到index.php吗?
由于
答案 0 :(得分:0)
不要使用window.location.replace,直接将值赋给
window.location
或
windows.location.href