たとえば、Classroom オブジェクトを定義します。教室の人数が 60 人を超えた場合、イベント onFull がトリガーされます。具体的な定義は次のとおりです。 >
{
this.numberOfPeople =0;
this.onFull=null ;
this.peopleEnter=function(number)
{
this.numberOfPeople =number
if(this.numberOfPeople>60&&this.onFull!=) null)
{
this.onFull(this.numberOfPeople);
}
}
}
function show1(number)
{
alert(" " 教室内の「人」数);
}
function show2(number)
{
alert("教室が「人」を超えています" (number-60) "人");
}
var クラスルーム1=新しいクラスルーム();
クラスルーム1.peopleEnter(30);
クラスルーム1.onFull=show2; 🎜>classroom1.peopleEnter(34);