我习惯于这样写插件:
;(function($){jQuery.fn.myPlugin=function(options){
var defaults={
'property':value
},
o=$.extend({},defaults,options||{});
// INSERT AND CACHE ELEMENTS
var $Element=$('<div></div>');
$Element.appendTo($('body'));
function funFunction(){
// I have access to $Element!
$Element.hide(500);
};
this.each(function(i){
var $this=$(this);
});
return this;
});};})(jQuery);
我知道它并不完美,这就是为什么我现在正在尝试正确学习命名空间、更好的插件结构/模式。不幸的是,我读过的前几本书逐字引用了 jQuery 插件创作教程,因此并没有太大帮助。该教程似乎将所有内容都分开了,并且没有显示一个很好的组合示例,这就是我感到困惑的原因。在本教程中,它显示了命名空间示例。
jQuery 插件命名空间教程
(function( $ ){
var methods = {
init : function( options ) {
},
show : function( ) {
},
hide : function( ) {
},
update : function( content ) {
}
};
$.fn.tooltip = 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 on jQuery.tooltip' );
}
};
})( jQuery );
// calls the init method
$('div').tooltip();
我了解结构以及如何访问命名空间对象,但是它显示了不包括任何命名空间的默认值/选项的另一个示例......因此,为了编写一个正确命名空间的插件的开头,具有默认值/选项并缓存我插入的 HTML 元素用于整个插件,我想出了以下内容。
正确的组合?
;(function($,window,document,undefined){
var myPlugin={
// METHODS
init:function(options){
},
buildElements:function(){
var $Elements=$('<div id="myElem"></div>')
.appendTo($('body'));
}
};
$.fn.myPlugin=function(method,options){
var defaults={
},
options=$.extend({},defaults,options||{});
myPlugin.buildElements();
return this.each(function(){
var $this=$(this);
if(myPlugin[method]){
return myPlugin[method].apply(this,Array.prototype.slice.call(arguments,1));
}else if(typeof method==='object'||!method){
return myPlugin.init.apply(this,arguments);
}else{$.error('Method '+method+' does not exist on jQuery.myPlugin');};
});
};})(jQuery);
显然,当我构建/插入 myElem 时,它只能在该方法中使用,而不能在任何其他方法中使用......我是在错误的地方构建它吗?
默认值/扩展是否在正确的位置?
如果我不想从插件外部访问方法,是否需要方法逻辑部分?
使用 .prototype 与 .fn 有什么好处吗?
非常感谢任何人和所有人!:)