我问了一个类似的问题,但没有收到。所以我会重新措辞。为什么flipClock 函数getTime() 没有在每次钟面变化时返回一个值?当我将其输出到控制台时,该值始终保持在 10。它永远不会倒计时。然而,时钟工作得很好。如何获取时钟的当前时间?
var clock;
// Instantiate a counter
clock = new FlipClock($('.clock'), 10, {
clockFace: 'MinuteCounter',
autoStart: false,
countdown: true
});
if(clock.getTime() == 0){
//Redirect to another page
window.location.href = "example.html";
}else{
console.log("This is the time now" + getTime());
}