$.extend(obj)和$.fn.extend(obj)的区别

$.extend(obj):

扩展jquery本身,添加方法:

$.extend({
add:function(a,b){
return a+b;
}
})
$.add(5,8) //return 13

这里是直接调用,$.add(5,8);不加任何对象。

$.fn.extend(obj):

对prototype进行扩展,为jquery类添加成员函数, jquery类的实例可以使用这个成员函数。


$.fn.extend({
clickwhile:function(){
$(this).click(function(){
alert($(this).val())
})
}
})
$(‘input‘).clickwhile();//当点击输入框会弹出该对象的Value值

时间: 2024-10-09 20:18:12