function $p > //分割名字空間域字串
var domains = name.split(".");
> for( var i=0; i {
if(typeof(cur_domain[ domain]) == "undefined")
{
[domain] = {};
}
//設定目前領域中針對此循環的領域
cur_domain = cur_domain[domain];
}
//用with引用的方式
$package("com.anllin.system" );
$package("com.hs.test");
with(com.anllin)
with(com.hs)
;
alert("test1 : " test);
}
//用閉包引用的方式 (function(){
var system = com.anllin.system;
2 : " system);
alert("test2" test);
})();