javascript的方法可以分为三类:
a 类方法
b 对象方法
c 原型方法
function People(name){ this.name=name; //对象方法 this.Introduce=function(){ alert("My name is "+this.name); }}//类方法People.Run=function(){ alert("I can run");}//原型方法People.prototype.IntroduceChinese=function(){ alert("我的名字是"+this.name);} //测试var p1=new People("lll");p1.Introduce();People.Run();p1.IntroduceChinese();