JS项整理
https://www.cnblogs.com/8023-CHD/p/11067141.html
(function($){ $.fn.greenify = function(){ // this.css("color", "green"); $(this).css("color", "green"); }; $.fn.extend({ aa:function () { $(this).css("color", "yellow"); } }); })(jQuery); 引用的时候,例如$("#id").greenify ();