日期:2014-05-16 浏览次数:20387 次
可以用于一个页面多个倒计时,调用也非常方便。
- /*
- jquery.countdown.js
- */
- (function($){
- var countdown = function(item, config)
- {
- var seconds = parseInt($(item).attr(config.attribute));
- var timer = null;
- var doWork = function()
- {
- if(seconds >= 0)
- {