所有,我有以下代码:
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,它会告诉我正确的。任何想法我做错了什么?