1.构造函数
function Person(name,age,job) {
this.name = name;
this.age = age;
this.job = job;
this.showName = function () {
alert(this.name);
};
this.showAge = function () {
alert(this.age);
};
this.showJob = function () {
alert(this.job);
};
}
var Bob = new Person('bob',18,'产品汪');
Bob.showName();
2.原型模式
function Person(name,age,job) {
this.name = name;
this.age = age;
this.job = job;
}
// prototype原型
Person.prototype.showName = function () {
alert(this.name);
};
Person.prototype.showAge = function () {
alert(this.age);
};
Person.prototype.showJob = function () {
alert(this.job);
};
var Lucy = new Person('Lucy',19,'测试鼠');
alert(Lucy.showName());
3.构造函数
function Person(name,age,job) {
this.name = name;
this.age = age;
this.job = job;
this.showName = function () {
alert(this.name);
};
this.showAge = function () {
alert(this.age);
};
this.showJob = function () {
alert(this.job);
};
}
var Bob = new Person('bob',18,'产品汪');
Bob.showName();
网友评论