<!DOCTYPE HTML>
<html>
<head>
<title>定时器:发送短信验证码案例</title>
<meta charset="utf-8" />
<style>
</style>
</head>
<body>
<div>
<input type="text" />
<button id="btn">发送</botton>
</div>
<script>
var btn = document.getElementById('btn');
var num = 5;
btn.addEventListener("click",function(){
this.disabled = true;
var timer = null;
timer = setInterval(function(){
if( num == -1) {
clearTimeout(timer);
btn.innerHTML = '发送';
btn.disabled = false;
num = 5;
}
else {
btn.innerHTML = '还有' + num + '秒可以再次点击';
num--;
}
}, 1000);
})
</script>
</body>
</html>