1.通过原型链实现继承 改变原型链的指向 // 父类构造函数 function Person(name,age) { this.name = name; this.age = age; } Person.prototype.hello = function() { console.log('hello'); } //子类构造函数 function Student(score) { this.score = score } Student.prototype = new Person('mike'...