这是我的倒计时
$('span.countdown').each(function() {
var endtime = $(this).html();
$(this).countdown({
until: endtime,
format: 'dhmS',
layout: '{d<}{dn} days {d>}{h<}{hn} hours {h>}{m<}{mn} mins {m>}{sn} secs',
expiryUrl: self.location.href
});
});
}
我想在倒计时到达零时重定向到index.php :)
答案 0 :(得分:1)
expiryUrl: self.location.href
to
expiryUrl: window.location.href
or
expiryUrl: "absolute url" //ie http://domain/index.php
答案 1 :(得分:0)
尝试将其更改为expiryUrl: "something"
。