我正在开发一个 jQuery 插件,对在同一命名空间内的方法之间共享函数和变量有点困惑。我知道以下将起作用:
(function($){
var k = 0;
var sharedFunction = function(){
//...
}
var methods = {
init : function() {
return this.each(function() {
sharedFunction();
});
},
method2 : function() {
return this.each(function() {
sharedFunction();
});
}
};
$.fn.myPlugin = function(method) {
// Method calling logic
if (methods[method]) {
return methods[method].apply(this, Array.prototype.slice.call(arguments, 1));
} else if (typeof method === 'object' || ! method){
return methods.init.apply(this, arguments);
} else {
$.error('Method ' + method + ' does not exist here');
}
};
})(jQuery);
但是,我想知道是否有更好的方法来做到这一点。虽然我知道变量“k”和函数“sharedFunction”在技术上不是全局的(因为它们不能直接在插件之外访问),但这似乎并不复杂。
我知道 $.data 是一个选项,但是如果您有大量需要通过插件中的多个方法访问的变量和函数,这似乎会变成一团糟。
任何见解将不胜感激。谢谢!