标签:name 函数 turn 集中 bsp cti 对象 方法 alert
声明一个js对象,
var box1=new Object();
box2.name1=‘123‘;
box2.age=100;
box2.run=function(){
return this.box2.name1;
}
//再次声明一个对象
var box2=new Object();
box.name1=‘Lee‘;
box.age=100;
box.run=function(){
return this.name;+‘运行中‘;
}
//为了解决多个类似声明的问题我们可以用一种叫做工厂模式的方法,
//这种方法就是为了解决实例化对象产生大量重复的问题.
function createObject(name,age){ //集中实例化函数
var obj=new Object();
obj.name=name;
obj.age=age;
obj.run=function(){
return this.name+this.age+‘运行中‘;
}
return obj;
}
var box1=createObject(‘Lee‘,100);
var box2=createObject(‘jack‘,200);
);
alert(box1);
alert(box2);
标签:name 函数 turn 集中 bsp cti 对象 方法 alert
原文地址:http://www.cnblogs.com/tjwrth-juglans/p/7449864.html