0

これは、クリックイベントがid dlbtnでトリガーされたときの私のjqueryカウントダウンコードです

var settimmer = 0;
$(function() {
    $('#dlbtn').click(function() {
        $('#dlnotify').toggle('slow');
        window.setInterval(function() {
            var timeCounter = $("b[id=show-time]").html();
            var updateTime = eval(timeCounter) - eval(1);
            $("b[id=show-time]").html(updateTime);
            if (updateTime <= 0) {
                window.location = ('/dl.php?fid=12');

                $('#dlnotify').hide();
            }
        }, 500);
        updateTime--;
        return false; //Kill the Event after request
    });

});​

私のスクリプトはdl.phページにアクセスし続けます

4

1 に答える 1

0

問題が何であるかは100%わかりませんがsetInterval、電話をかける必要があるを削除するにはclearInterval

http://www.w3schools.com/jsref/met_win_setinterval.asp

このコードを試してください:

var settimmer = 0;
$(function() {
    $('#dlbtn').click(function() {
        $('#dlnotify').toggle('slow');
        settimmer =window.setInterval(function() {
            var timeCounter = $("b[id=show-time]").html();
            var updateTime = eval(timeCounter) - eval(1);
            $("b[id=show-time]").html(updateTime);
            if (updateTime <= 0) {

                window.location = ('/dl.php?fid=12');
                clearInterval(settimmer); // clear the interval to avoid multiple redirects 
                $('#dlnotify').hide();
            }
        }, 500);
        updateTime--;
        return false; //Kill the Event after request
    });

});​
于 2012-06-10T07:10:10.377 に答える