这个难道不是为了写一些类似于
var Utility = {};
(function($){
var a = function(){};
var b = 12345;
var c = { a:1, b: a};
// do lots of things
$.a = a;
$.b = b;
})(Utility)
之类的代码。。把很多临时变量封装起来。。
【 在 snnth (love me more) 的大作中提到: 】
: (function() {
: alert(1);
: })();
: ...................
--
FROM 61.135.255.83