(function(){})();这些括号的作用是什么,
(function(){alert(“hello”);});//运行后,没有反映 (function(){alert(“hello”);})();//运行后,弹出 hello (function(){alert(“hello”);})(alert(“hi”));//运行后,先弹出hi,再弹出hello (function(){alert("hello");})(alert("hi"););//出错,什么也不运行。本文共 283 字,大约阅读时间需要 1 分钟。
(function(){})();这些括号的作用是什么,
(function(){alert(“hello”);});//运行后,没有反映 (function(){alert(“hello”);})();//运行后,弹出 hello (function(){alert(“hello”);})(alert(“hi”));//运行后,先弹出hi,再弹出hello (function(){alert("hello");})(alert("hi"););//出错,什么也不运行。转载于:https://my.oschina.net/diydit/blog/105827