在我使用jQuery Countdown插件的页面中。该页面目前在finish.countdown event中有一个功能。目前的代码是:
$this.countdown(finalDate).on('update.countdown', function(event) {
//set the actual time
var format = '<span>%H<strong>'+t_hour+'%!H:'+t_plural+';</strong></span><span>%M<strong>'+t_min+'</strong></span><span>%S<strong>'+t_sec+'</strong></span>';
//send the time to the countdown
$(this).html(event.strftime(format));
}).on('finish.countdown', function(event) {
//countdown is done - add the ended class to container
$(this).addClass('ended');
});
我无法访问生成此代码的代码 - 但我可以将自己单独的javascript添加到页面中。
有没有办法将附加功能/代码行附加到finish.countdown事件?
即。如果我想在计时器完成时做console.log("Done");
可以/如何将它附加到对象 - 而不修改原始jQuery?
谢谢!