本文主要和大家詳細介紹微信小程式實現驗證碼取得倒數計時效果,具有一定的參考價值,有興趣的夥伴們可以參考一下,希望能幫助到大家。
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中文網其他相關文章!