js 定义原型链方法时能调用该定义的方法么

2024年11月23日 04:21
有1个网友回答
网友(1):

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(){ al