这是什么意思“jQuery(function($){})”?

时间:2015-02-19 21:33:54

标签: jquery sigils

以下行是什么意思?它将函数($)作为参数传递给jQuery?

jQuery(function ($) {
  // ...
});

1 个答案:

答案 0 :(得分:2)

这意味着,“当我在此匿名函数中的任何位置使用$时,请将此jQuery()视为$()。”

Jquery文档:http://learn.jquery.com/using-jquery-core/