jQuery Timer - jQuery 计时器插件


MIT
跨平台
JavaScript

软件简介

jQuery Timer 可以在任意 HTML 元素开始,停止,恢复或者移除一个计时器,并且可以在设定的时间或者间隔一定的时间得到提醒通知。

在线演示

代码示例:

<script src="path/to/jquery.js" type="text/javascript"></script>
<script src="path/to/timer.jquery.js"></script>
<script>
(function($) {
  //start a timer
  $("#div-id").timer();
}());
</script>