這篇文章主要為大家詳細介紹了微信小程式實現驗證碼取得倒數計時效果,具有一定的參考價值,有興趣的小夥伴們可以參考一下
本文實例為大家分享了微信小程式實作取得驗證碼倒數效果的具體程式碼,供大家參考,具體內容如下
#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 }) }, })#以上就是本文的全部內容,希望對大家的學習有所幫助,更多相關內容請關注PHP中文網! 相關推薦:
#################### ##########
以上是微信小程式實作驗證碼取得倒數計時的效果的詳細內容。更多資訊請關注PHP中文網其他相關文章!