标签:xtend test pre 添加 extend color ext http object
1.jQuery.extend(object);为扩展jQuery类本身.为类添加新的方法。
为jQuery类添加"静态方法"。
$.extend({ test : function(){} }) $.test();
2.jQuery.fn.extend(object);给jQuery对象添加方法。
为jQuery类添加“成员函数”。jQuery类的实例才可以调用这个“成员函数”。
$.fn.extend({ test : function(){} }) $("div").test();
http://caibaojian.com/jquery-extend-and-jquery-fn-extend.html
jquery.extend()和jquery.fn.extend()
标签:xtend test pre 添加 extend color ext http object
原文地址:http://www.cnblogs.com/suye/p/7357985.html