(function() {
//注冊命名空間zzw到window對象上 window['zzw'] = {}
//定義一個$函數 function $() { alert("hello $"); }
//把$函數注冊到gyb命名空間中 window['zzw']['$'] = $;})();