首頁  >  文章  >  微信小程式  >  小程式:實現點擊倒數計時的程式碼

小程式:實現點擊倒數計時的程式碼

不言
不言原創
2018-08-10 15:44:023064瀏覽

這篇文章帶給大家的內容是關於小程式:實現點擊倒數計時的程式碼,有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。

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: &#39;重新发送&#39;,
          currentTime:61,
          disabled: false   
        })
      }
    }, 100)  
  },
  getVerificationCode(){
    this.getCode();
    var that = this
    that.setData({
      disabled:true
    })
  },

})
<button disabled=&#39;{{disabled}}&#39; data-id="2" bindtap="getVerificationCode">
{{time}}
</button>

相關推薦:

##小程式元件:聊天會話元件的介紹(附程式碼)

小程式與後台進行交互的實作(附程式碼)

以上是小程式:實現點擊倒數計時的程式碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn