0

我有一个这样的 JavaScript 类

function Palette() {

  this.selectedItem = "";

  this.addBox = function() {
    // Different approach, create a fake box
    b = $("<div id='box-palette' class='box'>Box</div>");
    b.insertBefore('#cont');

    b.mousedown(function() {
        this.selectedItem = "box"; // Here I want to access Palette#selectedItem
        console.log(Palette);
    });
  }
}

如何在要传递给 jQuery 的函数中访问类的属性?

任何帮助将不胜感激。谢谢!

4

1 回答 1

2

由于它是用 jQuery 标记的,因此使用$.proxy()将父上下文传递给回调方法

function Palette() {

    this.selectedItem = "";

    this.addBox = function () {
        // Different approach, create a fake box
        b = $("<div id='box-palette' class='box'>Box</div>");
        b.insertBefore('#cont');

        b.mousedown($.proxy(function () {
            this.selectedItem = "box"; // Here I want to access Palette#selectedItem
            console.log(Palette);
        }, this));
    }
}

注意:由于缺少 IE<9 支持,未使用bind()

于 2013-09-04T11:07:54.987 回答