vue 點擊按鈕獲取60秒倒計時


 

 

html

<div class="button">
<van-button type="info" v-show="show" @click="getCode">獲取驗證碼</van-button>
<van-button type="info" v-show="!show" class="count">{{count}} s</van-button>
</div>

data

return {
show: true,
count: '',
timer: null,
}

 

js

getCode(){
const TIME_COUNT = 10;
if (!this.timer) {
this.count = TIME_COUNT;
this.show = false;
this.timer = setInterval(() => {
if (this.count > 0 && this.count <= TIME_COUNT) {
this.count--;
} else {
this.show = true;
clearInterval(this.timer);
this.timer = null;
}
}, 1000)
}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM