gpt4 book ai didi

javascript - 将 return false 附加到 jquery 绑定(bind)

转载 作者:行者123 更新时间:2023-11-28 20:48:25 25 4
gpt4 key购买 nike

我得到了这个代码:

$('#la_freccia_dx').bind('click', function(){
boutique_next();
});

在我的 html 标记中,我使用以下代码阻止页面向上滚动:

<a id="la_freccia_dx" href="#" onclick="boutique_next(); return false;">

但现在它仅在我第一次单击链接时有效。我需要将 return false 附加到上面的 jquery 函数并防止链接的默认操作。任何想法?谢谢!

已解决:我的错!我在标记中留下了 href="#"。谢谢大家!

最佳答案

使用 jQuery“event.preventDefault()”:

$('#la_freccia_dx').bind('click', function(event){
event.preventDefault();
boutique_next();
});

我会这样做:

$('#la_freccia_dx').click(function(event){
event.preventDefault();
boutique_next();
});

我的 HTML 为:

<a id="la_freccia_dx">

关于javascript - 将 return false 附加到 jquery 绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13008689/

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