functionPeople(name){this.name=name;//对象方法this.Introduce=function(){console.log("Mynameis"+this.name);}}//类方法People.Run=function(){console.log("Icanrun");}//原型方法People.prototype.IntroduceChinese=function(){console.log("我的名字是"+this.name);}//测试varp1=newPeople("大宝");p1.Introduce();People.Run();p1.IntroduceChinese();最近正在学习js的原型,在网上搜索的例子,请问下对象方法与类方法以及原型方法的区别是什么呢?在实际应用过程中应该怎么选择呢?
森栏
犯罪嫌疑人X
相关分类