Jquery小部件有问题

时间:2011-05-19 16:35:58

标签: javascript jquery jquery-ui jquery-plugins jquery-widgets

我有一个这样的小部件

$.widget("ui.myWidget", {
    //default options
    options: {
        myOptions: "test"
    },
    _create: function () {
        this.self = $(this.element[0]);
        this.self.find("thead th").click(function () {
            this.self._headerClick(); //how do I do this!!!
        });
        this.self._somethingElse();
    },
    _headerClick: function (){
    },
    _somethingElse: function (){
    },
.
.
.

this.self._headerClick();行会引发错误。这是因为在该上下文中this是被点击的th元素。如何获得对_headerClick函数的引用?

2 个答案:

答案 0 :(得分:6)

将所需this的范围存储在变量中。

$.widget("ui.myWidget", {
    //default options
    options: {
        myOptions: "test"
    },
    _create: function () {
        var that = this; // that will be accessible to .click(...
        this.self = $(this.element[0]);
        this.self.find("thead th").click(function () {
            that._headerClick(); //how do I do this!!!
        });
        this.self._somethingElse();
    },
    _headerClick: function (){
    },
    _somethingElse: function (){
    },

答案 1 :(得分:2)

未经测试,但可能是这样的:

_create: function () {
    var self = this,
        $elem = $(self.element[0]);

    $elem.find("thead th").click(function() {
        self._headerClick();
    });

    self._somethingElse();
},