function P(이름){
this.name=name;
this.p1=function(){
alert('상위 생성자');
}
이것을 반환하세요.
}
함수 C(이름,ID){
//this.method=P;
//this.method(이름); //첫번째 메소드
//P.call(this,name); //두 번째 메소드
P.apply(this,new Array(name));//세 번째 메소드
this.id=id;
this.dis=function(){
alert(this.name);
}
}
function dis(){
alert(this.name);
}
function t(){
var cc=new C('N','Id');
cc.dis();
cc.p1();
}