如何将url重定向添加到此jQuery倒计时

时间:2012-02-10 01:18:54

标签: jquery url redirect countdown

我需要在此编码中添加网址重定向

这是jquery代码

我需要它在倒计时到零时重定向

$(function(){
    $('#countdown_dashboard').countDown({
        targetDate: {
            'day':   27,
            'month': 1,
            'year':  2012,
            'hour':  0,
            'min':   0,
            'sec':   0
        }
    });
})

1 个答案:

答案 0 :(得分:0)

 $(function(){
 $('#countdown_dashboard').countDown({
  targetDate: {
         'day':     27,
         'month':   1,
         'year':    2012,
         'hour':    0,
         'min':     0,
         'sec':     0
            },
   onComplete: function() { window.location.href = 'some URL'; }   
   });
 });

http://www.littlewebthings.com/projects/countdown/example.php?e=on_complete