This question already has answers here:
Location of parenthesis for auto-executing anonymous JavaScript functions?
(4个答案)
6年前关闭。
这两种运行JavaScript函数的类型有什么区别?
和
我已经看过这两个,而且我倾向于使用#1。
(4个答案)
6年前关闭。
这两种运行JavaScript函数的类型有什么区别?
(function() {
//Code #1
})();
和
(function() {
//Code #2
}());
我已经看过这两个,而且我倾向于使用#1。
最佳答案
根本没有功能上的区别……只是一种风格。
09-20 12:31