代碼示例:
function People(name)
{
this.lsx=name;
//對象方法
this.fdx=function(){
alert("My name is "+this.lsx);
}
}
//類方法
People.fl=function(){
alert("I can run");
}
//原型方法
People.prototype.fyx=function(){
alert("我的名字是"+this.lsx);
}
//測試
var p1=new People("Windking");
p1.fdx();
p1.fyx();
People.fl();
People.prototype.fyx()
//查看
Object.keys(People) //查看類方法
People.prototype //原型方法+類方法
p1 //查看對象方法+原型方法+類方法
People //查看構造函數(shù)代碼
測試驗證:
完