找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索本站精品资源

首页 教程频道 小程序开发 查看内容

微信小程序 短信验证码登录 倒计时 setInterval

作者:模板之家 2018-9-17 09:16 1119人关注

需求:输入手机号 - 点击获取验证码 - 进入60s倒计时 短信验证码登录 data: {seconds: 0, // 读秒timer: // 计时器},let that = this// 开始倒计时that.setData({seconds: 60,timer: setInterval(function(){let sec ...

需求:输入手机号 -> 点击获取验证码 -> 进入60s倒计时 

短信验证码登录

 

  1. data: {
    seconds: 0, // 读秒
    timer: '' // 计时器
    },
    let that = this
    // 开始倒计时
    that.setData({
    seconds: 60,
    timer: setInterval(function(){
    let seconds = that.data.seconds
    that.setData({ seconds: seconds - 1 })
    if (that.data.seconds == 0) {
    // 读秒结束 清空计时器
    clearInterval(that.data.timer)
    }
    }, 1000)
    })
    


路过

雷人

握手

鲜花

鸡蛋
原作者: 模板之家 来自: 网络收集

全部回复(0)