prototype属性
Posted 瞳里
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了prototype属性相关的知识,希望对你有一定的参考价值。
function People(name){ this.name=name; //对象方法 this.Introduce=function(){ console.log(this.name); } } //类方法 People.Run=function(){ console.log("I can run"); } //原型方法 People.prototype.IntroduceChinese=function(){ console.log(this.name); } //测试 var p1 = new People(‘132‘); p1.Introduce();//132 People.Run();//I can run p1.IntroduceChinese();//132
以上是关于prototype属性的主要内容,如果未能解决你的问题,请参考以下文章