상속 방법.
function MyParent(){ }
function MyClassA(){}
MyClassA.prototype = new MyParent ()
constructor를 설정하는 이유는?
MyClassA.prototype = new MyParent();
/* 아래 구문이 실행되기 전까지의 MyClassA.prototype.constructor = MyParent임.
constructor용도는 객체의 타입을 구분하기 위해서 사용됨.
*/
MyClassA.prototype.constructor = MyClassA;
'Web > JQuery' 카테고리의 다른 글
checkbox checked 설정 (0) | 2014.10.17 |
---|---|
Datepicker 대만 번체 zh-TW 번역자료 (0) | 2014.07.28 |
Javascript override 방법 (0) | 2014.05.21 |
jQuery.ajax() 사용시 중복호출 방지하는 방법 (0) | 2014.05.21 |
[IE9 짜증남] IE 버전 체크 (0) | 2014.05.21 |