码迷,mamicode.com
首页 > 其他好文 > 详细

提示倒计时

时间:2016-11-02 09:58:57      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:--   val   on()   har   oct   清除   tle   led   html   

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<input type="text"/>
<button id="btn">点击发送短信</button>
</body>
</html>

<script>
var btn = document.getElementById("btn");
var count = 5; //数据的
var timer = null ; //定时器的名字

btn.onclick = function(){
clearInterval(timer); //先清除原先的定时器

this.disabled = true ; //禁用当前的button this一般使用在函数里面,当前值得是button

var that = this //把btn对象给 that

timer = setInterval(sendTextMessage,1000);//开启定时器 定时器的 名字是timer

function sendTextMessage(){
alert(this);
alert(that);

count--;
if(count >= 0){
that.innerHTML = "还剩余"+count+"秒";
}else{
that.innerHTML = "重新发送短信";
that.disabled = false;
clearInterval(timer);//清除定时器
count = 5;
}
}

}
</script>

提示倒计时

标签:--   val   on()   har   oct   清除   tle   led   html   

原文地址:http://www.cnblogs.com/aa-bb/p/6021656.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!