3

我有一个 jQuery ui 小部件,它的内容中有一个链接

 <a href="test" data-foo="clickThis">Click me</a>

_create函数中我附加点击事件处理程序并创建实例变量

_create: function () {
   //*this* here refers to widget
   this.$elem.on('click', 'a[data-foo]', this._clickHandler);
   this.instanceVariable = "someValue";
}

_clickHandler: function (event) {
   //**this** in here refers to link, not to widget
   //Question: How to call _otherPrivateFunction from here 
}

_otherPrivateFunction(){
  //I want to access this.instanceVariable in here
}

我在一页上有多个小部件实例,所以每个实例都应该访问它自己的 instanceVariable。我发现这样做的一种方法是传递thisevent.data点击处理程序,但是我不喜欢这个解决方案,因为这只是一些解决方法。

this.$elem.on('click', 'a[data-foo]', this, this._clickHandler);

我将不胜感激一些更好的解决方案。

4

1 回答 1

5

您可以使用$.proxy()将自定义执行上下文传递给单击处理程序,然后this在事件处理程序内部将指向小部件,以便您可以this._otherPrivateFunction()从处理程序方法调用

this.$elem.on('click', 'a[data-foo]', $.proxy(this._clickHandler, this));
于 2013-08-18T09:23:31.740 回答