1

我有一个像这样定义的插件:

(function( $ ){
    var mymethods = {
        init: function(opts) {
            // do some wild awesome magic
            if (opts.drawtablefirst) $(this).drawtable(); // This doesn't actually work of course
        },

        drawtable: function() {
            $(this).empty().append($("<table>")); // Empty table, I know...
        }
    }

    // Trackman table
    $.fn.myplugin = function(method) {

        if (mymethods[method] ) {
            return mymethods[method].apply(this, Array.prototype.slice.call(arguments, 1));
        } else if (typeof method === 'object' || !method ) {
            return mymethods.init.apply(this, arguments);
        }
    }
})( jQuery );

我希望能够drawtable从该方法调用该init方法,但该方法不起作用。我实例化我的插件主要是:

$("div#container").myplugin({drawtablefirst: true})

但有时我不想通过drawtablefirst然后手动调用它,例如:

$("div#container").myplugin('drawtable')

配置它的最佳方法是什么是drawtable可访问的插件方法,但也可以从插件方法本身中调用,例如init

此外,访问drawtablevia中的原始元素$(this)似乎不起作用。那里的正确方法是什么?

谢谢。

4

1 回答 1

0

此解决方案使用 jQuery-ui 1.7+ .widget 功能,这里有一个很好的链接,可以免费获得

$.widget("notUi.myPlugin",{
 options:{
   drawtablefirst:true,
   //...any other opts you want
 },
 _create:function(){
  // do some wild awesome magic
  if (this.options.drawtablefirst){
   this.drawtable(); // This actually works now of course
  } 
 },
 //any function you do not put an underscore in front of can be called via .myPlugin("name", //args)
 drawtable: function() {
   this.element.empty().append($("<table>")); // Empty table, I know...
 }
});
于 2012-04-20T18:38:24.180 回答