jQuery $.fn 的用法初始化方法12345678910(function($) { $.fn.upload = function(options) { var opts = $.extend({ isShow: false }, options); console.log(opts); return $(this) }})(jQuery);使用12345$("#add").upload({ isShow: true})// {"isShow": true}