在jQuery中,$ .fn是什么? 意思?

在jQuery中,$ .fn是什么? 意思? 我在谷歌上看了这个,但是找不到任何具体的例子。

$.fn.something = function{} 

它允许你用自己的函数来扩展jQuery。

例如,

 $.fn.something = function{} 

将允许你使用

 $("#element").something() 

$.fn也是jQuery.fn同义词,这可能会使您的Googlesearch更容易。

查看jQuery插件/创作

这里已经详细介绍了这一点:

为什么jQuery做到这一点:jQuery.fn.init.prototype = jQuery.fn?

但是缺点是$.fn$jQuery.prototype的别名

请参阅插件/创作