1

我正在使用一个样板插件设计,看起来像这样,

;(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

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

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

    }
});

现在,当onSomething从我的插件内部调用函数时,我如何调用引用实例onSomething函数的插件公共方法?

例如,第一个 div 发生了一些事情,并且 container只为第一个onSomethingdiv调用了函数。 container

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

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

对我来说,这看起来很错误,所以必须有更好的方法......或者没有?

4

1 回答 1

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对象`让我们举一个具体的例子。

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

希望这会有所帮助,如果还不够清楚,请告诉我。

哦,等等,这就是你所做的。

于 2013-04-19T20:08:41.977 回答