一:總體寫在一個括號中javascript
代碼以下:java
(function Show(){alert("hello");}())
二:function函數總體外加括號函數
代碼以下:spa
(function Show(){alert("hello");})()
三:function前加一元運算符或者「void」code
!function Show(){alert("hello");}() 或者 void function Show(){alert("hello");}()