すべて、私は次のコードを持っています:
var site_url = 'http://localhost/website/';
jQuery("#cancel_song_choice").click(function(event){
cancel_url = site_url + "event-form";
window.location.href(cancel_url);
});
次に、次の HTML があります。
<button id="cancel_song_choice">Cancel Search</button>
ボタンをクリックすると、指定したキャンセル URL に移動するのではなく、現在のページにリダイレクトされ続けます。cancel_url に警告すると、正しい URL が表示されます。私が間違っていることはありますか?