DreamMan81 2023-01-18 17:41 采纳率: 100%
浏览 19
已结题

js原型的碰到的问题

    <script type="text/javascript">
        'use strict'
        function Animal(name, age){
            this.name = name
            this.age  = age
            this.say=function(){
                console.log(this)
                if (this instanceof Cat)
                    {console.log("I'm a cat.")}
                else
                    {console.log("I'm a dog")}
            }
        }
        function Cat(name, age){
            this.name= name
            this.age  = age
        }

        function Dog(name, age){
            this.name= name
            this.age  = age            
        }

        let animal = new Animal('小花', 1)
        Cat.prototype =  animal
        var cat = new Cat("喵喵", 20)
        cat.say()
        Dog.prototype =  animal
        var dog = new Dog("大黄", 2)
        dog.say()
        console.log(dog instanceof Dog)
    </script>

上述代码中,为什么调用say之后输出的都是I'm a cat,而不是I'm a cat 和I'm a dog?问题出在哪里?

  • 写回答

2条回答 默认 最新

  • Halifax ‎ 2023-01-18 18:08
    关注

    你的2个动物类的prototype 都设置成了animal

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

问题事件

  • 系统已结题 1月27日
  • 已采纳回答 1月19日
  • 创建了问题 1月18日