setInterval中断重新触发倒计时时间点不对?

// 发送语音

var clock = '';
var nums = 5;
var btn = $('<div class="videoClock">' + nums + 's</div>');


$(document).on('click', '[class^="horn_icon"]', function() {
    var that = $(this);
    if (that.is(".horn_icon_off")) {
        that.attr('class', 'horn_icon_on');
        $(".input_write").html(btn);
        timeCtrlBtn();
    } else {
        that.attr('class', 'horn_icon_off');
        $(".input_write").html('<input type="text" name="talkfonts" value="" placeholder="Type something">');
        clearInterval(clock); //清除js定时器
        nums = 5; //重置时间
    }
});




var timeCtrlBtn = function() {
    clock = setInterval(doLoop, 1000); //一秒执行一次
};
var doLoop = function(thisBtn) {
    nums--;
    if (nums > 0) {
        btn.text(nums + 's');
        console.log(clock);
    } else {
        console.log(nums);
        nums = 5; //重置时间
        clearInterval(clock); //清除js定时器
        clock = '';
        console.log(clock);
        $(".horn_icon_on").attr('class', 'horn_icon_off');
        $(".input_write").html('<input type="text" name="talkfonts" value="" placeholder="Type something">');


    }
};
/* end */

clipboard.png

阅读 2.4k
1 个回答

$(".input_write").html(btn);
这句,btn里面的值并没有更新,所以.html()之前要更新一下btn里面的值
$(".input_write").html(btn.text(nums + 's'));

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题