jQuery 实现按钮点击后倒计时 如短信验证码发送等

1.前端页面给一个按钮
<button type="button" class="btn-xlarge" id="dyMobileButton">发送验证</button>
2.jQuery如下
<script>
   //给按钮一个点击事件
   $(‘#dyMobileButton‘).click(function () {
     //设置时常,以秒计算
       var time=60;
    var timer = setInterval(function () {
       time--;
       if (time > 0){
         //正在倒计时
         $(‘#dyMobileButton‘).html(‘重新发送‘ + time + ‘秒‘);
         $(‘#dyMobileButton‘).prop(‘disabled‘,true);
       }else{
         $(‘#dyMobileButton‘).html(‘发送验证码‘);
         $(‘#dyMobileButton‘).prop(‘disabled‘,false);
         clearInterval(timer);
       }
     },1000)
   })
</script>

jQuery 实现按钮点击后倒计时 如短信验证码发送等

上一篇:vue 使用 video.js 播放 m3u8 视频流


下一篇:vue-发送AJAX请求应用