小程序:实现点击倒计时的代码

互联网 18-8-10
本篇文章给大家带来的内容是关于小程序:实现点击倒计时的代码,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。
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>

相关推荐:

小程序组件:聊天会话组件的介绍(附代码)

小程序与后台进行交互的实现(附代码)

以上就是小程序:实现点击倒计时的代码的详细内容,更多内容请关注技术你好其它相关文章!

来源链接:
免责声明:
1.资讯内容不构成投资建议,投资者应独立决策并自行承担风险
2.本文版权归属原作所有,仅代表作者本人观点,不代表本站的观点或立场
标签: 倒计时
上一篇:php获取远程图片并下载保存到本地的方法分析 下一篇:小程序组件:聊天会话组件的介绍(附代码)

相关资讯