码迷,mamicode.com
首页 > Web开发 > 详细

jquery.extend()和jquery.fn.extend()

时间:2017-08-14 16:41:06      阅读:155      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!