美文网首页
简书富文本编辑测试

简书富文本编辑测试

作者: 可乐_加冰_ | 来源:发表于2020-06-19 16:11 被阅读0次
    var sendstatus = true;
    $('#sendCode').click(function () {
    
        var _this = $(this);
        if (sendstatus) {
            _this.html('60秒重发');
            sendstatus = false;
            sendtime = 60;
            sendevent = setInterval(function () {
                if (sendtime > 0) {
                    sendtime--;
                    _this.html(sendtime + '秒重发');
                    $("#sendCode").attr('disabled', true);
                } else {
                    sendstatus = true;
                    _this.html('发送验证码');
                    clearInterval(sendevent);
                    $("#sendCode").attr('disabled', false);
                }
            }, 1000);
        }
    });
    

    相关文章

      网友评论

          本文标题:简书富文本编辑测试

          本文链接:https://www.haomeiwen.com/subject/ubtbxktx.html