0

我有一个 javascript“类”,它有两种方法。在其中一种方法中,我正在尝试创建一个 flot plothover 绑定,该绑定可以访问我的类的属性和方法,在该类中进行绑定。我想弄清楚的是如何从绑定函数中访问类属性和方法。

var MyClass = 
{
  Property1 = null,
  ShowToolTip: function( x, y, text ) { ...stuff... },
  Render: function ( arg1, arg2 ) 
  {
     this.Property1 = "this works";
     $('#placeholder').bind('plothover', function (event, pos, item ) {
        this.Property1 = "non workie";         // need access to Property1
        this.ShowToolTip( 10, 10, "stuff" );   // need access to ShowToolTip
     }
  }
}

显然,我不能使用“this”来查看 MyClass - 那么是否可以从绑定函数中访问和调用 MyClass 的属性和方法?

我可以有多个 MyClass 的克隆运行,所以我需要做的任何事情都必须在每个克隆的类中隔离。

感谢您的任何建议。科里。

4

1 回答 1

3

您可以创建对以下内容的引用this

Render: function ( arg1, arg2 ) 
      {
         this.Property1 = "this works";
         var that = this;
         $('#placeholder').bind('plothover', function (event, pos, item ) {
            that.Property1 = "non workie";         // need access to Property1
            that.ShowToolTip( 10, 10, "stuff" );   // need access to ShowToolTip
         }
      }
于 2013-01-18T20:01:43.643 回答