无法理解这个jquery插件是如何工作的

时间:2015-04-03 00:17:22

标签: jquery plugins

我正在开设一个代码学校课程,但我对jquery插件如何工作非常困惑。有人可以像我5那样解释下面的插件吗?

感谢。

$.fn.photofy = function() {

  this.each(function() {
    var tour = $(this);
    var wtf = function(event){

      event.preventDefault();
      tour.addClass("is-showing-photofy");

    };
    tour.on('click.photofy', '.see-photos', wtf);
  });
}

0 个答案:

没有答案