JS继承

继承关系

代码:

function Temp(){};
Temp.prototype=Person.prototype;
var stuProto=new Temp;
Student.prototype=stuProto;
stuProto.constructor=Student;

你可能感兴趣的:(JS继承)