このような JavaScript 基本関数があります。
roomBase = function () {
this.go = function(){
alert(1);
}
}
このような部屋オブジェクトがあります。
myRoom = function(){
this.go = function(){
alert(456);
}
}
myRoom.prototype = new roomBase();
theRoom = new myRoom();
電話するtheRoom.go()
と、 からアラートが届きprototype
ます。私が欲しいのは、myRoom
代わりに関数からのアラートです。