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

js 原型链总结

时间:2019-05-09 13:26:15      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:func   style   apply   属性   UNC   构造   new   test   size   

举个例子

function Test() {

this.name = "吕布";
this.age = "35";
this.skill_1 = function () {
console.log(2)
};
this.skill_2 = function () {
console.log(3)
}
}

Test.prototype.skillPrototype1 = function () {
console.log(‘skillPrototype1‘)
};
Test.prototype.skillPrototype2 = function () {
console.log(‘skillPrototype2‘)
};
Test.prototype.haha = "1111";

var test = new Test();

console.log(test);

//继承
function Data() {
Test.apply(this)
}
Data.prototype = Test.prototype;

var newData = new Data();
console.log(newData);

// prototype 构造器原型上定义方法和属性
// __proto__ 指向构造函数原型上
// constructor 指向构造器
//通过这样一层一层的指向最顶端Object 构成原型链

js 原型链总结

标签:func   style   apply   属性   UNC   构造   new   test   size   

原文地址:https://www.cnblogs.com/zou1234/p/10837698.html

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