(function(){})(); 之间有区别吗?和(函数(){}());
可能的重复:
JavaScript:立即函数调用语法
有人提出了类似的问题这里
那里,作者问了
(
function(){}
)
();
和
function(){}();
第一个的目的之一是通知读者该函数将立即执行。我也看过这个版本
(
function(){}()
)
;
这个和上面两个一样吗?
Possible Duplicate:
JavaScript: immediate function invocation syntax
A similar question has been asked here
there, the author asked about the difference between
(
function(){}
)
();
and
function(){}();
the purpose of the first is, among other things, to inform the reader that the function is to be immediately executed. I have also seen this version
(
function(){}()
)
;
Is this the same as the above two?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个变体
function(){}();
会给你语法错误This variant
function(){}();
will give you syntax error