-1

我在我的项目中使用 Jquery 倒计时(http://hilios.github.io/jQuery.countdown/)。我想在 counter 结束前 5 分钟(显示警报)和 counter 结束后 10 分钟警告用户。在我看到的网站文档中,有一个名为 elapsed 的事件,提供时间结束的信息。

请问有什么建议吗?我的猜测是我必须处理事件调用 finaldate。

4

1 回答 1

0

问题已解决。为了警告用户,我在更新回调中使用了 offset.minutes 事件。这是代码

flag2 = true;

$('#clock').countdown(dateseance, { elapse: true }).on('update.countdown', function (event) {

                if (event.offset.minutes == (4) && flag2) {
                    alert("Less than 5 minutes before the end of counter");
                    flag2 = false;
                }

我们使用 flag2 只显示一次警报。因此,当计数器达到 4mn 59 s 时,将显示警报。

于 2016-06-06T12:48:03.297 回答