我正在寻找一种在插件中包含公共可访问函数的方法,但我仍在学习 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);