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

2024-11-23 04:21: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