jquery中方法扩展 ($.fn & $.extend) 学习笔记
A、$.fn 1、$.fn.method() 函数为jQuery对象扩展一个属性和方法(主要用于扩展方法) ;method 为自定义方法名 ($.fn 等效 $.prototype) 1 $.fn.borderSet = function () { 2 this.each(function () { 3 $(this).css("border", "solid pink 2px"); 4 }); 5 return this; 6 }; 7 $.fn.textColor = function ($color) { 8 this.each(function () { 9 $(this).css("color", $color); 10 }); 11 return this; 12 }; 13 14 $.fn.textSize = function () { 15 this.each(function () { 16 $(this).css("font-size", '40px'); 17 }); 18 return this; 19 }; 2、$.fn.extend() 函数为jQuery对象扩展一个或多个实例属性和方法(主要用于扩展方法) 1 $.fn.extend({ 2 borderSet: function () { 3 this.each(function () { 4 $