- 注册时间
- 2017-9-29
- 最后登录
- 2023-6-18
- 阅读权限
- 10
- 积分
- 53
- 精华
- 0
- 帖子
- 11
|
我在网上找了这种方法
btn.onclick = function oper(){
//执行一次 过2秒结束 才能点击
btn.onclick = null;
clearTimeout(timer);
var timer = setTimeout(function(){
btn.onclick = oper;
},2000);
}
在jsp中没有什么效果,又换了一种,还是没效果
var isClick = true;
$("a").on("click",function(){
alert("adf");
if(isClick) {
isClick = false;
//事件
console.log($(this).attr("data-val"));
//定时器
setTimeout(function() {
isClick = true;
}, 3000);//一秒内不能重复点击
}
});
有没有什么办法?
|
|