1 ;(function(global){ 2 3 var G = {}; 4 G.LOG = (function(){ 5 log : 11; // log 不是 G.FUNC 的属性 外界不能访问 6 })(); 7 G.fail = function(){ 8 if( typeof need != "undefined"){ 9 console.log(11); 10 } 11 }; 12 13 G.FUNC = (function(){ 14 return { 15 log : 11 // 外界也可以访问 可以修改 16 } 17 })(); 18 19 /*G.FUNC = { 20 logout : "xx" // 肯定可以 21 };*/ 22 23 global.G = G; 24 })(this);