如何让Jquery最终倒计时插件在一天中的某个时间停止?

时间:2015-08-31 17:13:36

标签: javascript jquery

如何让Jquery Final Countdown在一天的特定时间停止?我想在今天下午3点停止。

$('.clock').countdown('2015/09/4', function(event) {

   //display clock in : w/d/hr/min/sec format
   var $this = $(this).html(event.strftime(''
   + '<span>%w</span> weeks '
   + '<span>%d</span> days '
   + '<span>%H</span> hr '
   + '<span>%M</span> min '
   + '<span>%S</span> sec'));

1 个答案:

答案 0 :(得分:0)

根据文档(http://hilios.github.io/jQuery.countdown/documentation.html#introduction),您可以在相同的字符串中以日期后的hh:mm:ss格式给出时间。

所以,下午3点,最终日期将是2015/09/4 15:00:00&#39;

脚本:

$('.clock').countdown('2015/09/4 15:00:00', function(event) {

   //display clock in : w/d/hr/min/sec format
   var $this = $(this).html(event.strftime(''
   + '<span>%w</span> weeks '
   + '<span>%d</span> days '
   + '<span>%H</span> hr '
   + '<span>%M</span> min '
   + '<span>%S</span> sec'));
});