只若初见

发送一个验证码后提示n秒有效

电脑版发表于:2020/6/29 22:37

比如300秒有效:

var lasttime = 300;
$("#checkcodediv").show();
$("#checktip").html(lasttime + "秒有效");
var lasttimeInt = setInterval(function () {
    //先减
    lasttime--;
    //在赋值
    $("#checktip").html(lasttime + "秒有效");
    if (lasttime == 0) {
        $("#checktip").html("验证码已经失效");
        clearInterval(lasttimeInt);
    }
}, 1000);


关于TNBLOG
TNBLOG,技术分享。技术交流:群号677373950
ICP备案 :渝ICP备18016597号-1
App store Android
精彩评论
{{item.replyName}}
{{item.content}}
{{item.time}}
{{subpj.replyName}}
@{{subpj.beReplyName}}{{subpj.content}}
{{subpj.time}}
猜你喜欢