常见的写法:
(function(){ // do something magic...})();
JSLint 建议的写法:(function(){
// do something magic...}());