(function($){
$.fn.the_func = function() {
function my_func(){
alert('it works');
}
my_func();
// other code
};
})(jQuery);
$(window).load(function(){
my_func(); // This way?
$.the_func().my_func(); // Or this way? No?
$.the_func.my_func(); // No?
// ?
});
$(document).ready(function(){
$('div').the_func();
});
如何在包装它的函数之外调用这个函数?
我想my_func()
在这个代码示例中调用。
(window-load 函数只是一个例子。)
我想my_func()
从“无处不在”调用而不执行the_func()
. 但我想使用the_func()
. 我想更新存储在参数中的
值。my_func()
the_func()