关于js的prototype与constructor的问题

重新指向了constructor,p2怎么访问不到copy函数?


        function Person(name) {

            this.name = name;

        }


        Person.prototype.copy = function() {

            return new this.constructor(this.name);

        }

        var p1 = new Person('李四');

        //console.log(Person.prototype);

        Person.prototype = {

            show: function() {

                console.log('show');

            }

        }

        Person.prototype.constructor=Person;

        //console.log(Person.prototype);

        var p2 = new Person('张三');


慕码人2483693
浏览 338回答 1
1回答

莫回无

出现这个问题的原因是你使用字面量创建了原型,导致了原型链的重写。图是摘自JS高级程序设计6.3.1,可以解释你遇到的问题:
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript