0

次のコードは機能しますが、期待どおりに機能しません。

$(".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 にリダイレクトするために追加できる追加の手順はありますか?

ありがとう

4

1 に答える 1

0

window.location.replace を使用しないで、値を直接割り当てます

window.location

また

windows.location.href
于 2013-02-15T09:11:13.863 に答える