本文主要為大家介紹如何簡單實現vue驗證碼60秒倒數功能,具有一定的參考價值,有興趣的小伙伴們可以參考一下,希望能幫助到大家。
html
<span v-show="show" @click="getCode">获取验证码</span> <span v-show="!show" class="count">{{count}} s</span>
js
data(){ return { show: true, count: '', timer: null, } }, methods:{ getCode(){ const TIME_COUNT = 60; 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) } } }
相關推薦:
js程式碼實作點擊按鈕出現60秒倒數_javascript技巧
以上是vue實作驗證碼60秒倒數功能簡單實例的詳細內容。更多資訊請關注PHP中文網其他相關文章!