我需要在此编码中添加网址重定向
这是jquery代码
我需要它在倒计时到零时重定向
$(function(){
$('#countdown_dashboard').countDown({
targetDate: {
'day': 27,
'month': 1,
'year': 2012,
'hour': 0,
'min': 0,
'sec': 0
}
});
})
答案 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