所有, 我有下面的代碼:jQuery的重定向頁面不工作的按鈕點擊
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>
當我點擊按鈕,它只是將我重定向到我所在的頁面,而不是轉到我指定的取消網址。我提醒了cancel_url,它顯示了我正確的一個。任何想法我做錯了什麼?
使用'了window.location = cancel_url;' –