這篇文章帶給大家的內容是關於小程式:實現點擊倒數計時的程式碼,有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
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 }) }, })
<button disabled='{{disabled}}' data-id="2" bindtap="getVerificationCode"> {{time}} </button>
相關推薦:
以上是小程式:實現點擊倒數計時的程式碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!