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 () { }(window.jQuery);. 这是什么意思?
! $(function () { }(window.jQuery);
!function($) { }(jQuery)
是相同的
(function($) { })(jQuery)
或者
(function($) { }(jQuery))
这只是一种更短的方法,可以让您立即调用一个函数表达式。not 运算符 ( !) 使它成为函数表达式而不是声明,就像括号一样,但它短了一个字符。
!