7

我对 jQuery 很陌生,但熟悉其他一些语言。我最近买了一个测验类型的脚本,我试图为每个问题添加一个简单的 15 秒计时器。这只是一个有趣的测验,因此无需担心用户使用 javascript 来增加时间等。

基本上,如果用户在 15 秒内没有选择一个问题,它将自动进入下一个问题,并且计时器重新开始。

Answers have the .nexttag, and when chosen it moves onto the next question as the code below shows (hopefully).

superContainer.find('.next').click(function () {

            $(this).parents('.slide-container').fadeOut(500, function () {
                $(this).next().fadeIn(500)
            });

            return false
});

我遇到的问题是,如果我使用setInterval,我不知道如何再次选择适当的 div 来淡化它并淡入下一个。我已经尝试了下面的代码和一些类似的好斗的想法,但它不起作用,但也许它会让我更好地了解我所追求的。

superContainer.find('.next').click(function () {

    $active_count = $count;

    countInterval = setInterval(function() {
                $active_count--;
                if($active_count <= 0){
                    clearInterval(countInterval);
                    $active_count = $count;
                    $(this).parents('.slide-container').fadeOut(500, function () {
                        $(this).next().fadeIn(500)
                    });
                }
                $('.question-timer').html($active_count);
            }, 1000);

            $(this).parents('.slide-container').fadeOut(500, function () {
                $(this).next().fadeIn(500)
            });

            return false
});

我只使用 JQuery 一两天,所以请原谅任何明显的错误和糟糕的代码!如果您需要任何其他代码或信息,请告诉我

4

2 回答 2

3

对于第一个 jQuery 项目来说,这有点棘手。

诀窍(在这个解决方案中)是分解出一个goNext可以通过两种方式调用的函数——响应点击事件和响应 15 秒setTimeout(),而不是setInterval().

$(function(){
    var questionTimeout = null;

    function goNext($el) {
        clearTimeout(questionTimeout);
        var $next = $el.next();
        $el.fadeOut(500, function() {
            if($next.length > 0) {
                $next.fadeIn(500, function() {
                    questionTimeout = setTimeout(function() {
                        goNext($next);
                    }, 15000);
                });
            }
            else {
                afterLastQuestion();
            }
        });
    }
    function afterLastQuestion(){
        alert("last question complete");
        $start.show();
    }

    var $superContainer = $("#superContainer").on('click', '.next', function() {
        goNext($(this).closest('.slide-container'));
        return false;
    });

    var $start = $("#start").on('click', function(){
        $(this).hide();
        $superContainer.find(".slide-container")
            .eq(0).clone(true,true)
            .prependTo(superContainer)
            .find(".next").trigger('click');
        return false;
    });
});

演示

该过程通过单击“开始”链接开始,导致第一个问题被克隆,然后模拟单击克隆的“下一个”链接。这确保了(实际)第一个问题的处理方式与所有其他问题完全相同。

我还包括了一个afterLastQuestion()功能。在回答最后一个问题(或超时)后,修改其操作以执行任何必要的操作。

于 2012-08-25T05:05:32.277 回答
0

您可以将当前问题保存在变量中,通过next单击和计时器将其重置,例如

var $current;
superContainer.find('.next').click(function (e) {

    e.preventDefault();
    $(this).parents('.slide-container').fadeOut(500, function () {
        $(this).next().fadeIn(500);
        $current = $(this).next();
    });

});​

您只需将其设置为初始化时的第一个问题,并记住next单击即可重置计时器

此外,通常最好使用e.preventDefault()而不是return false.

于 2012-08-25T01:57:20.807 回答