当前位置: 首页 > Web前端 > vue.js

前端倒计时工具简述

时间:2023-03-31 14:48:53 vue.js

:应用环境一般为考试倒计时,获取验证码的倒计时运行环境为vue,小程序/**初始数据*/data(){return{agreeCountDown:'00:02:00',//显示agreeCountTime:2*60,//操作agreeShow:true,}}/**倒计时开始事件*/getCode(){letthat=this;让maxtime=that.agreeCountTime;lettimer=setInterval(function(){if(maxtime<=0){clearInterval(timer);that.agreeShow=false;return;}maxtime--;让分钟=('0'+Math.floor(maxtime/60)).substr(-2);让seconds=('0'+Math.floor(maxtime%60)).substr(-2);让msg='00:'+minutes+':'+seconds;那.agreeCountDown=msgconsole.log(that.agreeCountDown)},1000);},