美文网首页
原型中的方法可以相互访问

原型中的方法可以相互访问

作者: SuYongZhi | 来源:发表于2018-11-15 22:12 被阅读0次
    function Animal(name,age){
        this,name = name;
        this.age = age;
    }
    //原型中添加方法
    Animal.prototype.eat = function(){
        console.log("动物吃东西");
        this.play();
    };
    Animal.prototype.play = function(){
        console.log("玩球");
        this.sleep();
    };
    Animal.prototype.sleep = function(){
        console.log("睡觉了");
    };
    //实例化对象
    var dog = new Animal("小明",20);
    dog.eat();
    

    相关文章

      网友评论

          本文标题:原型中的方法可以相互访问

          本文链接:https://www.haomeiwen.com/subject/zxbufqtx.html