Vue.js如何实现验证码倒计时?码农颜小白实测

Vue.js如何实现验证码倒计时?来这里看看

  1. 首先验证码倒计时是基本上所有需要登录得页面或程序所需要的。
  2. 验证码倒计时得实现其实就是通过计时器,不断地调用当前方法对所设置得倒计时总数进行 - -。
    代码如下:
	页面使用
	<div prop="password" style="margin: 30px 0;position: relative;height: 40px;">
            <el-input placeholder="验证码" v-model="password" ></el-input>
            <label v-if="codeShow" @click="yanzhen()" type="text" style="position: absolute;top:9px !important;right: 10px;border: none;color: #4ACCD4 !important;background-color: none;">获取验证码</label>
            <label v-if="!codeShow" @click="messagey" type="text" style="position: absolute;top:9px !important;right: 10px;border: none;color: #4ACCD4 !important;background-color: none;cursor: pointer;">{{count}}后获取</label>
    </div>
--------------------------------------
	JS
 data() {
      return {
        // 数据绑定
        phone: '',
        password: '',
        codeShow: true, //判断显示隐藏
        count: '', //显示时的文字内容
        timer: null,//计时器
      }
    },
    methods: {
    	getcode(){
			 const TIME_COUNT = 60; //倒计时60秒
           	 if (!this.timer) {
              this.count = TIME_COUNT;
              this.codeShow = false;
              this.timer = setInterval(() => {
                if (this.count > 0 && this.count <= TIME_COUNT) {
                  this.count--;
                } else {
                  this.codeShow = true;
                  clearInterval(this.timer);
                  this.timer = null;
                }
              }, 1000);//每秒执行一次,这里的1000指的是1000毫秒
		}
    }

这就是一个简单通用得验证码倒计时,实测可用!如何帮到你了希望你可以点个赞或者关注奥~ 谢谢

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值