js中只有函数有作用域,所以用函数模拟一个命名空间
function CartNamespace(){ function LoginBox(){/*登录弹窗*/ this.show=function(){}; } function ShopCartBusiness(){/*购物车业务*/ var _loginBox = undefined; this.init=function(){ _loginBox = new LoginBox(); }; } this.shopCart=new ShopCartBusiness(); } var shopCart = new CartNamespace().shopCart; shopCart.init();