gpt4 book ai didi

jquery - 如何为 keith-wood Jquery 倒计时插件设置 7 天倒计时

转载 作者:行者123 更新时间:2023-12-01 05:33:05 29 4
gpt4 key购买 nike

我正在为即将推出的页面使用 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});

}

提前致谢!

最佳答案

使用此代码:

function countdown () {

layout = $('.timer').html();
date = new Date("2016-05-20T13:00:00");
var d = new Date(0);
d.setUTCSeconds(date);
$('.timer').countdown({until: date, layout: layout});


}

关于jquery - 如何为 keith-wood Jquery 倒计时插件设置 7 天倒计时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35776097/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com