>웹 프론트엔드 >JS 튜토리얼 >객체 지향 예제 code_javascript 기술의 일괄 구현

객체 지향 예제 code_javascript 기술의 일괄 구현

WBOY
WBOY원래의
2016-05-16 17:30:37957검색
코드 복사 코드는 다음과 같습니다.

;


객체 지향 인스턴스 일괄 구현<br><script type=" text/javascript ">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></script>
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.