jQuery将代码添加到现有对象函数回调

时间:2016-11-17 18:46:29

标签: javascript jquery

在我使用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?

谢谢!

0 个答案:

没有答案