以下のコードでは、GameStatsPanel
関数の 2 行目に次のエラーが表示されます。
「キャッチされていない TypeError: オブジェクト #Timer にメソッド 'start' がありません」
なぜこれが起こっているのか、私は本当にかなり混乱しています-どこかで単純なものが欠けているような気がしますが、啓発が必要です. www.letsplayglobalgames.com にアクセスし、[プレイ!] を選択して、問題をチェックしてください。オプションはホームページから。詳細が必要な場合はお知らせください。
function GameStatsPanel() {
this.timer = new Timer();
this.timer.start(); /* error is thrown here */
}
function Timer() {
this.container = document.getElementById('game_time');
this.current_flag_time_start;
this.current_flag_time_stop;
this.time_start = new Date();
this.time_stop;
this.time_difference;
this.current_flag_time_difference;
}
Timer.prototype.start = function() {
this.current_flag_time_start = new Date();
}