如何每周循环一次Keith Wood 的倒数计时器?以每周为单位,我的意思是计时器每次用完时应该增加 7 天。我试着想出这段代码,但它不起作用。
$(function () {
var testing = new Date();
testing = new Date(2013, 5, 24, 16, 0, 0);
$('#nextCountdown').countdown({until: testing, timezone: +9, onExpiry: newWeek});
});
function newWeek() {
testing.setDate(testing.getDate() + 7);
}