``
```
<!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>
```