我正在为即将推出的页面使用 keith Wood jquery 倒计时插件,我想添加 7 天 10 小时 40 分钟倒计时。你可以在这里找到更多http://keith-wood.name/countdown.html
这是我的代码:
function countdown () {
// src: http://keith-wood.name/countdown.html
layout = $('.timer').html();
var newYear = new Date();
newYear = new Date(newYear.getDate() + 7, 1 - 1, 1);
$('.timer').countdown({until: newYear, layout: layout});
}
提前致谢!