我想在我的项目中实现jQuery Countdown计时器。最近我使用了位于链接
的计时器http://harshen.github.io/jquery-countdownTimer/
我使用了以下代码
<script>
$(function(){
$('#ms_timer').countdowntimer({
minutes :2,
seconds : 00,
size : "lg"
});
});
</script>
我想做的是,当计时器达到零时,我想发出警报"Time OVer"
我该如何实现?
答案 0 :(得分:3)
根据documentation,您可以使用timeup
这样的回调:
$(function(){
$("#more_options").countdowntimer({
minutes : 20‚
size : "lg"‚
tickInterval : 5‚
timeSeparator : "-"‚
timeUp : timeisUp // <----- Closure method name
});
function timeisUp() {
// Code to be executed when timer expires.
alert('Time is Up!');
}
});
timeup :这是倒计时到零时调用的回调函数的名称。在函数内,这指的是保存小部件的分区。没有传入任何参数。请为此选项提供名称,不带引号。
希望这有帮助!