摘要:
// 声明MyNamespace.Singleton = (function(){ // 私有属性 var uniqueInstance;// 创建记录 // 私有方法 function constructor(){ var attribute = 100; // 闭包属性 function method(){ // 闭包方法 // ... } } // 公共方法 return { getInstance:function(){// 创建实例 // 如果记录不存在 if(!uniqueInstance){ uniqueInstance = constructor();... 阅读全文
摘要:
1 /*********对象冒充**********/ 2 function Parent(username){ 3 this.username=username; 4 this.sayHello=function(){ 5 alert(this.username); 6 } 7 } 8 function Child(username,password){ 9 this.method=Parent;10 this.method(username);11 ... 阅读全文