gpt4 book ai didi

javascript - jQuery 在链接上反跳

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

我的目的是防止客户重复点击特定链接。想延迟2秒左右。我无法弄清楚。

$('.a').click(function(e){
e.preventDefault();
});

$('.a').on("click", $.debounce(5000, true, function(){
$('.a').unbind('click');
}));

我是否遗漏了引用文档中的某些内容?

引用:http://benalman.com/code/projects/jquery-throttle-debounce/docs/files/jquery-ba-throttle-debounce-js.html

最佳答案

你的代码应该是这样的:

var callback = function () {
console.log( new Date(). toLocaleString());
}

//$.debounce(milliseconds, fire right away, function to execute)
var fnc = $.debounce( 500, true, callback );
$(".a").on("click", fnc);

关于javascript - jQuery 在链接上反跳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35773231/

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