首页 > Web开发 > 详细

js 面向对象

时间:2014-05-26 05:21:30      阅读:407      评论:0      收藏:0      [点我收藏+]
function Animal(name) {
    this.name = name;
}


Animal.prototype.eat = function(food) {
    console.log("food");
};


Animal.prototype.getName = function()
{
    return this.name;
};

var a = new Animal('hello');



a.eat("world");
console.log(a.getName());
console.log(a.name);


function Ferret(){}
Ferret.prototype = new Animal();//Ferret.prototype.__proto__ = Animal.prototype;
Ferret.prototype.type = "Domestic";

Ferret.prototype.eat = function (food) {
    Animal.prototype.eat.call(this,food);

    //
    console.log("Ferret Eat:..");
};

var f = new Ferret();
f.eat();



js 面向对象,布布扣,bubuko.com

js 面向对象

原文:http://blog.csdn.net/haifengzhilian/article/details/26683221

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!