JavaScript点击事件计时器运行得很快

时间:2018-08-17 02:39:34

标签: javascript jquery function jquery-click-event

您可以使用此Link

在github页面功能中检查我的全部代码

我使计时器功能,它看起来像这样。

function timer() {

    seconds += 1;
    $(".timer").html(seconds);
    timerPrint = setTimeout(timer, 1000);
    console.log(seconds);
}

每秒1秒。

然后将它放在click事件函数中,因为当我单击li元素时,我想创建它,游戏将启动并且Timer计时。

$(document).ready(function () {

    let clickhold = [];
    $('.card').click(function () {
        timer();

        $(this).addClass('disable');
        // Push the card to compare each other
        clickhold.push($(this).children('.fa').attr('class'));
        console.log(clickhold);

        // Card Open
        $(this).addClass("open show");
        if (clickhold.length == 2) {
            // Call moves Function to count move and stars.
            moves();
            $('.card').addClass('disable');
            if (clickhold[0] === clickhold[1]) {
                $('.open.show').removeClass("open show").addClass("match");
                console.log('matched');
                clickhold = [];
                $('.card').removeClass('disable');
            } else {
                console.log('not matched');
                clickhold = [];
                let ele = $('.card');
                setTimeout(function () {
                    ele.removeClass("open show");
                    $('.card').removeClass('disable');
                }, 1000);

            }
        }
    })
});

但是问题是当我单击每个li元素时。定时器功能将再次被调用,因此计数器运行更快。并非每个1秒。但是我对此一无所知。

1 个答案:

答案 0 :(得分:0)

只需检查计时器是否已经存在,如果存在,只需返回:

function timer() {
    if (timerPrint) {
        return;
    }
    seconds += 1;
    $(".timer").html(seconds);
    timerPrint = setTimeout(timer, 1000);
    console.log(seconds);
}