$.fn
jQuery.fn 其实是 jQuery对象的原型,也就是jQuery.fn=jQuery.prototype
所以我们就可以用来给jquery的原型添加方法或者属性,那么所有jquery的实例化对象,都会具有添加的方法,或者属性。
$.fn.say=function(){
console.info("hello");
};
$("#div1").say();
$.fn.extend()
这个方法和上面的是一样的
$.fn.extend({
say : function(){
console.info("hello");
}
});
$("#div1").say();
$.extend()
$.extend({
say : function(){
console.info("hello");
}
});
$.say();
jQuery.extend($.fn,{})
这个和$.fn.extend()是一样的
$.extend($.fn,{
say : function(){
console.info("hello");
}
});
$("#div1").say();