//面向对象
//工厂函数
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.run());
alert(box2.run());
//构造函数创建对象
function Box(name,age){
this.name=name;
this.age=age;
this.run = function(){
return this.name + this.age +'运行中..';
};
};
//1.构造函数没有new Object,但它后台自动var obj=new Object
//2.this相当于obj
//3.构造函数不需要返回对象引用,他是后台自动返回的
//1.构造函数也是函数,但是第一个字母必须大写
//2.必须new构造函数名(),new Box(),这个Box第一个字母也是大写的
//3.必须使用new运算符
var box1=new Box('Lee',100);
var box2=new Box('jack',200);
alert(box1.run());
alert(box2.run());
阅读(754) | 评论(0) | 转发(0) |