我正在寻找一种在插件中包含公共可访问函数的方法,但我仍在学习jQuery / javascript,所以我无法让它正常工作。我想访问插件中的一些代码,在本例中是一个名为someFunc的函数。那我该怎么做呢,最好的方式是什么?
看起来应该是这样的$ .pluggg.validation()。
//我的插件包装
;(function($, window, document, undefined){
$.fn.pluggg = function(options) {
options = $.extend({}, $.fn.pluggg.options, options);
return this.each(function() {
var obj = $(this);
function someFunc(){
alert(options.label);
}
});
};
$.fn.pluggg.options = {
label: 'yeahhhhh'
};
})(jQuery, window, document);