跑起来了啊

来源:3-4 编程练习

慕虎0938118

2019-07-23 14:14

<!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(){

      // 计时开始 

          console.log(times);

          send.disabled='disabled';

          if(timer){clearInterval(timer);timer = null;}

          timer = setInterval(function(){

times--;

           send.value = times+"秒后重试";

           if(times<=0){

           clearInterval(timer);

           times = 60;

           send.disabled='';

           send.value = "发送验证码";

           }

           },1000);

           

}

</script>

</head>

<body>

<input type="button" id="send" value="发送验证码">

</body>

</html>


写回答 关注

1回答

  • weixin_慕先生2398545
    2021-10-31 23:19:51

    恭喜你

Tab选项卡切换效果

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

65465 学习 · 533 问题

查看课程

相似问题