``![](https://box.kancloud.cn/4024398034d0f1a66d15f68d9ae99844_709x431.png)
```
<!DOCTYPE html>
<html>
<head>
<title>按钮不可连续点击</title>
</head>
<body>
<!-- 设置按钮.id关键词 -->
<button id="btn">提交</button>
</body>
</html>
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script type="text/javascript">
$("#btn").click(function(){//设置触发事件
$("#btn").attr("disabled",true);//点击后开启'不可点击'
setTimeout(function(){//设置3秒后关闭'不可点击'
$("#btn").attr("disabled", false)
}
,3000
)
})
</script>
```