标签: javascript
我只是在愚蠢地分析一些网站的源代码中的一些代码,我遇到了这个匿名函数的约定。
!function(window){ //so a bunch of stuff }(this)
我从未见过匿名函数的!函数用法。它做了什么,为什么有人会使用它?
UPDATE2:道歉,经过额外测试后,以下主题总结了它的用法:
What does the exclamation mark do before the function?