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

在 jQuery 中,$. fn. 是什么意思? 我在谷歌上查了一下,但没有找到任何具体的例子。

$.fn.something = function{}
35727 次浏览

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

比如说,

$.fn.something = function{}

将允许你使用

$("#element").something()

$.fn也是 jQuery.fn的同义词,这可能使你的谷歌搜索更容易。

参见 JQuery 插件/创作

这里已经详细介绍过了:

为什么 jQuery 这样做: jQuery.fn.init.Protoit.= jQuery.fn?

简单来说,$.fn$jQuery.prototype的别名