本文主要和大家详细介绍微信小程序实现验证码获取倒计时效果,具有一定的参考价值,感兴趣的小伙伴们可以参考一下,希望能帮助到大家。
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
})
},
})
相关推荐:
canvas绚丽倒计时实现代码分享
限时抢购倒计时功能实现方法
jquery倒计时小应用实现代码
以上就是微信小程序验证码获取倒计时效果代码分享的详细内容。