코드 복사 코드는 다음과 같습니다. ; 객체 지향 인스턴스 일괄 구현window.onload = function(){ <BR>function Person(name,age){ <BR>this.name = name; <BR>this.age = age; <BR>} <BR> Person.prototype.showName = function(){ <BR>alert(this.name); <BR>} <BR>function extend(parent,child,method){ <BR>function a(){ <BR>parent .apply(this,arguments); <BR>child.apply(this,arguments) <BR>} <BR>for(var i in parent.prototype){ <BR>a.prototype[i] =parent.prototype[i]; <BR>} <BR>for(var i in method){ <BR>a.prototype[i] = method[i]; <BR>return a; >}; //매개변수는 부모 생성자, 자식 생성자, 자식 메서드입니다. <BR>var int = extend(Person, function(name, age, job){ <BR>this.job = job; <BR>}, <BR>{ <BR>showjob:function(){ <BR>alert(this.job) <BR>} <BR>} <BR>) <BR>var oc=new int('Xia Ke',24 ,'job') <BR><BR>} <BR></head> 객체 상속 예시</h1> <BR><p>객체 지향 구현 예시를 일괄적으로 보여주기 시작합니다. <BR></body> <BR><BR>