jquery 插件扩展定义
; // 实例级别方法扩展 (function ($, window, document, undefined) { "use strict"; $.fn.functionName = function (param) { } })(jQuery, window, document); // 类级别方法扩展 $.extend({ functionName:function (param) { } });
; // 实例级别方法扩展 (function ($, window, document, undefined) { "use strict"; $.fn.functionName = function (param) { } })(jQuery, window, document); // 类级别方法扩展 $.extend({ functionName:function (param) { } });