可能重複:
What do parentheses surrounding a JavaScript object/function/class declaration mean?調用函數在JavaScript
爲什麼下面的代碼不工作
function func() {
document.writeln("HELLO");
}();
UPDATE:
爲什麼在下面的例子中Ø不應該使用「功能{}」周圍的parentesis?
var v = function() {
return "HELLO";
}();
document.writeln(v);
你的答案是你的個人資料PIC – 2012-06-20 13:14:37
+1驚人的好! DUDE你是JS大師! ':)' – gdoron
爲什麼要在第二個例子中使用括號?請參閱我的問題中的更新。 –