我有一个 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。我发现这样做的一种方法是传递this
给event.data
点击处理程序,但是我不喜欢这个解决方案,因为这只是一些解决方法。
this.$elem.on('click', 'a[data-foo]', this, this._clickHandler);
我将不胜感激一些更好的解决方案。