标签: jquery sigils
以下行是什么意思?它将函数($)作为参数传递给jQuery?
jQuery(function ($) { // ... });
答案 0 :(得分:2)
这意味着,“当我在此匿名函数中的任何位置使用$时,请将此jQuery()视为$()。”
$
jQuery()
$()
Jquery文档:http://learn.jquery.com/using-jquery-core/