gpt4 book ai didi

javascript - 如何避免连续双击?

转载 作者:行者123 更新时间:2023-11-29 18:34:43 25 4
gpt4 key购买 nike

$('#element').dblclick(function(e){  
console.log("event");
});

当我快速点击该元素时,它会多次显示该事件。但是我想让用户阻止连续双击,也许跳过它 1 秒钟,我该怎么做?

最佳答案

var click_allowed = true;
$('#element').dblclick(function(e){
if (!click_allowed) return;
console.log("event");
click_allowed = false;
window.setTimeout(function() {
click_allowed = true;
}, 1000);
}

关于javascript - 如何避免连续双击?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4359483/

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