자바스크립트 class질문..
Posted: 2005 11 16 15:00 27
우선 소스...
이런식으로 클래스를 정의하여 사용할 수 있는것으로 알고 있습니다. (엄밀한 의미에선 클래스가 아닌가요?)
그런데
가 먹히질 않네요.
메쏘드와 메쏘드 사이에 this.메쏘드이름() 으로 호출이 안되는것 같은데.. 해결할 수 있는 방법은 없을까요?
Code: Select all
function test(){
this.init=function(){
[native code]
}
this.add=function(){
[native code]
}
this.remove=function(){
[native code]
}
this.modify=function(){
[native code]
}
this.empty=function(){
[native code]
}
}
그런데
Code: Select all
this.add=function(){
this.empty();
}
메쏘드와 메쏘드 사이에 this.메쏘드이름() 으로 호출이 안되는것 같은데.. 해결할 수 있는 방법은 없을까요?