在click事件函数里面使用这个(类对象)

时间:2013-05-10 08:06:18

标签: javascript javascript-events this jquery

我在按钮上有一个click事件,我必须传递这个类对象来调用click事件中的一个函数。我的要求如下:

$(this).on('click', function(){
     this.callFunc();
});

现在,我将它存储在自己中并在点击功能中使用它。目前我正在使用以下代码来实现此目的。

var self = this;
$(this).on('click', function(){
     self.callFunc();
});

有没有办法直接使用这个内部点击功能?

1 个答案:

答案 0 :(得分:4)

使用$.proxy将自定义执行上下文传递给回调函数

$(this).on('click', $.proxy(function(){
    this.callFunc();
}, this));