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

js原型

时间:2016-12-05 01:44:36      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:this   on()   prot   nbsp   new   bsp   function   test   js原型   

学过C的都知道指针

在 Js中  的原型其实就是指针。

 

function A(){
this.test = function(){alert(1);}
}
function B(){

}
function C(){

}
B.prototype = new A();
C.prototype = new A();
var obj = new B();
var obj2 = new C();
obj.test();//alert(1);
obj2.test()//alert(1);
B.prototype.test = function(){alert(2);}
obj.test();//alert(2);
obj2.test()//alert(1);

 

// var p = {};
// p.__proto__ = A.prototype;
// A.call(p);
// p.test();

js原型

标签:this   on()   prot   nbsp   new   bsp   function   test   js原型   

原文地址:http://www.cnblogs.com/relaxed/p/6132281.html

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