尝试动态地获取此脚本的now字段的时间。我试过使用$.now()和Date(),但似乎找不到正确的组合。PS...我在jQuery上很烂,因为我是一个新手,所以这就是我在这里的原因
倒计时有效。。但是总是在每次刷新页面时从现在列出的时间戳开始。这里的变量被馈送到我没有写的主脚本。
$('.countdown').final_countdown({
start: 1686226400,
end: 1696226400,
now: 1686226400,
seconds: {
borderColor: '#5677fc',
borderWidth: '3'
},
minutes: {
borderColor: '#7e57c2',
borderWidth: '3'
},
hours: {
borderColor: '#4db6ac',
borderWidth: '3'
},
days: {
borderColor: '#d81b60',
borderWidth: '3'
}
}, function() {});
任何帮助将不胜感激。
已尝试设置var now = $.now()...但似乎对我不起作用
1条答案
按热度按时间3bygqnnd1#
您需要将输出从毫秒转换为秒。尝试: