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(){ })();
和(函数())
(function(){ }());
从技术上讲,第一个定义了一个匿名函数,然后调用它,第二个定义了一个匿名函数,它按照定义的方式调用自身。实际上,它们是相同的。