溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

微信小程序實現(xiàn)驗證碼獲取倒計時效果

發(fā)布時間:2020-09-01 04:09:40 來源:腳本之家 閱讀:178 作者:吳姝璇 欄目:web開發(fā)

本文實例為大家分享了微信小程序實現(xiàn)獲取驗證碼倒計時效果的具體代碼,供大家參考,具體內容如下

微信小程序實現(xiàn)驗證碼獲取倒計時效果

wxml

<button disabled='{{disabled}}' data-id="2" bindtap="getVerificationCode">
{{time}}
</button>

js

var interval = null //倒計時函數(shù)
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: '重新發(fā)送',
  currentTime:61,
  disabled: false 
 })
 }
 }, 100) 
 },
 getVerificationCode(){
 this.getCode();
 var that = this
 that.setData({
 disabled:true
 })
 },

})

更多關于倒計時的文章請查看專題:《倒計時功能》

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。

AI