Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
下面的行是什么意思?它将 function($) 作为参数传递给 jQuery?
jQuery(function ($) { // ... });
它的意思是,“当我在这个匿名函数中的任何地方使用时$,就好像我在调用它一样对待它。”jQuery()$()
$
jQuery()
$()
jQuery 文档:http ://learn.jquery.com/using-jquery-core/