这是我的倒数
$('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
:)
最佳答案
expiryUrl: self.location.href
to
expiryUrl: window.location.href
or
expiryUrl: "absolute url" //ie http://domain/index.php
关于javascript - 我如何获得jQuery倒计时重定向到重置文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3751958/