對於下面的代碼,我得到的GameStatsPanel
功能的第二線以下錯誤:的JavaScript函數原型不能從構造的對象
"Uncaught TypeError: Object #Timer has no method 'start'"
我真的很困惑,爲什麼這種情況正在發生 - 我有一種感覺我錯過了一些簡單的地方,但我需要開悟。請隨時通過訪問www.letsplayglobalgames.com並選擇「Play!」來查看問題。選項從主頁。讓我知道你是否需要更多細節。
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();
}
難道你創建了'新GameStatsPanel對象()' – Musa 2013-02-21 06:14:14
是的,我的代碼: gameStatsPanel =新GameStatsPanel(); – LetsPlayGlobalGames 2013-02-21 06:22:45