<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>doc</title>
<style>
div{
margin: 200px;
}
span{
display: inline-block;
width: 40px;
height: 40px;
background-color: #333;
font-size: 20px;
color: #fff;
text-align: center;
line-height: 40px;
}
</style>
</head>
<body>
<button>发送</button>
<script>
var btn = document.querySelector('button');
console.log()
var time=3;
btn.addEventListener("click", function (){
btn.disabled=true;
var timer = setInterval(function (){
if (time==0) {
btn.disabled=false;
btn.innerHTML='发送';
clearInterval(timer);
time=3;
}else{
btn.innerHTML='还剩下'+time+'秒'
time--;
}
},1000)
})
</script>
</body>
</html>
06-22
317

08-16
359
