倒计时到2秒 就没了,求解

来源:3-4 编程练习

小白菜v

2017-06-24 20:25

<!DOCTYPE html>
<html>
<head>
	<meta charset="UTF-8">
	<title></title>
	<script type="text/javascript">
		window.onload = function(){
			var send = document.getElementById('send'),
				times = 60,
				timer = null;
				send.onclick = function(){
					//计时开始
					timer = setInterval(function(){
						send.value = times + "秒后重试";
						send.setAttribute('disabled','disabled');
						times--;
						if(times <= 0){
							send.value = "发送验证码";
							send.removeAttribute('disabled');
							clearInterval(timer);
							times = 60;
						}
					},1000);
				}
		}
	</script>
</head>
<body>
	
	<input type="button" id="send" value="发送验证码"/>
	
</body>
</html>

没有1秒后重试,而是直接跳到发送验证码,这是什么情况,是哪里有问题呢,求解一下。

写回答 关注

1回答

  • 慕粉0856303723
    2017-06-25 15:49:02

     times--;

    if(times < 0){ //你这里出错了

    ...

Tab选项卡切换效果

本课程详细介绍网页页面中最流行常用的tab切换效果

65468 学习 · 533 问题

查看课程

相似问题