码迷,mamicode.com
首页 > Web开发 > 详细

js 中的 prototype 和 constructor

时间:2017-05-18 12:34:59      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:tor   地址   entry   bsp   function   shu   jpg   detail   his   

var a=function(){

 this.msg="aa";

}

 

a.prototype.say=function(){ alert(‘this is say‘);}

1.只有函数有prototype  ,a.prototype.constructor 指向 a

2.var obj=new a()  obj是没有prototype 对象的,但是有constructor切指向a

3.关于继承

var b=function(){

this.msg="bb";

}

b.prototype=new a();//  将函数b的prototype 指向a的一个实例,则b 继承与a  , new b() 后就可以用 调用父类的 say 方法

3. b继承a  ,最终的msg="bb";

 

技术分享

技术分享

 

参考地址 http://blog.csdn.net/niuyongjie/article/details/4810835

js 中的 prototype 和 constructor

标签:tor   地址   entry   bsp   function   shu   jpg   detail   his   

原文地址:http://www.cnblogs.com/tiancai/p/6872671.html

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