jQuery从回调函数内部调用插件方法

时间:2013-04-19 19:51:44

标签: javascript jquery jquery-plugins

我使用的是样板插件设计,如下所示,

;(function ( $, window, document, undefined ) {

    var pluginName = "test",
        defaults = {};

    function test( element, options ) {
        this.init();
    }

    test.prototype = {   
        init: function() {}
    }

    $.fn.test = function(opt) {
        // slice arguments to leave only arguments after function name
        var args = Array.prototype.slice.call(arguments, 1);
        return this.each(function() {
            var item = $(this), instance = item.data('test');
            if(!instance) {
                // create plugin instance and save it in data
                item.data('test', new test(this, opt));
            } else {
                // if instance already created call method
                if(typeof opt === 'string') {
                    instance[opt].apply(instance, args);
                }
            }
        });
    };

})( jQuery, window, document );

现在说我有两个<div>同一个班级container

现在我会像这样在这些div上调用我的test插件,

$(".container").test({
    onSomething: function(){

    }
});

现在当从我的插件中调用函数onSomething时,如何调用该插件引用实例onSomething函数的公共方法??/ / p>

例如第一个 container div和onSomething函数发生的事情只被第一个 container div调用。< / p>

为了更清楚一点,我试图将this实例传递给onSomething函数,这样我公开所有插件数据然后我可以做一些事情等,

onSomething(instance){
   instance.someMethod();
   instance.init();
   //or anything i want
}

对我来说,这看起来很不对,所以必须有更好的方式......或者不是吗?

1 个答案:

答案 0 :(得分:0)

我不确定这是否是最好的主意,但您可以将当前对象作为参数传递。我们说onSomething : function(obj) { } So whenever "onSomething" is called by the plugin, you can call it like this: "onSomething(this)" and then refer to the object as object` 让我们举一个具体的例子。

var plugin = function (opts) {
 this.onSomething = opts.onSomething;
 this.staticProperty = 'HELLO WORLD';
 this.init = function() {
  //Whatever and lets pretend you want your callback right here.
  this.onSomething(this);
 }
}
var test = new Plugin({onSomething: function(object) { alert(object.staticProperty) });
test.init(); // Alerts HELLO WORLD

希望这有帮助,告诉我它是否不够清楚。

哦等等,那就是你做的。