gpt4 book ai didi

javascript - jQuery 页面重定向不适用于按钮单击

转载 作者:行者123 更新时间:2023-11-30 10:40:27 24 4
gpt4 key购买 nike

全部,我有以下代码:

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,它向我显示了正确的。知道我做错了什么吗?

最佳答案

href 不是一个函数,它是一个属性。使用:window.location.href = cancel_url;:

var site_url = 'http://localhost/website/';
jQuery("#cancel_song_choice").click(function(event){
window.location.href = site_url + "event-form";
});

查看 window.location on MDN .

关于javascript - jQuery 页面重定向不适用于按钮单击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11317615/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com