我已经有一个新创建的自定义 jquery 插件,我的问题是如何最小化它的占用空间?就像其他 jquery 插件作者一样,从代码行到“1 行”。
例子:
由此:
(function ($) {
$.fn.cPlugin = function () {
//lines of codes here
// another line of codes here
}
}(jQuery));
进入这个:
(function($){$.fn.cPlugin = function(){//lines of codes here and // another line of codes here}}(jQuery));