码迷,mamicode.com
首页 > 其他好文 > 详细

prototype属性

时间:2017-12-01 18:39:18      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:类方法   cti   script   class   on()   name   var   prot   测试   

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属性

标签:类方法   cti   script   class   on()   name   var   prot   测试   

原文地址:http://www.cnblogs.com/rockyan/p/7943583.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!