這篇文章主要為大家詳細介紹了微信小程式實現驗證碼取得倒數計時效果,具有一定的參考價值,有興趣的小夥伴們可以參考一下
本文實例為大家分享了微信小程式實作取得驗證碼倒數效果的具體程式碼,供大家參考,具體內容如下
#wxml
<button disabled='{{disabled}}' data-id="2" bindtap="getVerificationCode"> {{time}} </button>
js
var interval = null //倒计时函数 Page({ data: { date:'请选择日期', fun_id:2, time: '获取验证码', //倒计时 currentTime:61 }, getCode: function (options){ var that = this; var currentTime = that.data.currentTime interval = setInterval(function () { currentTime--; that.setData({ time: currentTime+'秒' }) if (currentTime <= 0) { clearInterval(interval) that.setData({ time: '重新发送', currentTime:61, disabled: false }) } }, 100) }, getVerificationCode(){ this.getCode(); var that = this that.setData({ disabled:true }) }, })
上面是我整理給大家的,希望未來對大家有幫助。
相關文章:
webpack 4.0.0-beta.0版本新功能(詳細教學)
#以上是透過微信小程式如何實現驗證碼取得倒數效果的詳細內容。更多資訊請關注PHP中文網其他相關文章!