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

时间:2010-06-22 04:13:55

标签: jquery jquery-plugins

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

$.fn.something = function{}

3 个答案:

答案 0 :(得分:128)

它允许您使用自己的函数扩展jQuery。

例如,

$.fn.something = function{}

允许您使用

$("#element").something()

$.fn也是jQuery.fn的同义词,可能会让您的Google搜索变得更轻松。

请参阅jQuery Plugins/Authoring

答案 1 :(得分:8)

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

Why jQuery do this: jQuery.fn.init.prototype = jQuery.fn?

但缺点是$.fn$jQuery.prototype

的别名

答案 2 :(得分:6)