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

js 面向对象

时间:2014-05-26 05:21:44      阅读:345      评论:0      收藏:0      [点我收藏+]

标签:class   blog   c   code   java   a   

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 面向对象

标签:class   blog   c   code   java   a   

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

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