对于下面的代码,我在GameStatsPanel
函数的第二行收到以下错误:
“未捕获的类型错误:对象 #Timer 没有方法‘开始’”
我真的很困惑为什么会发生这种情况——我觉得我在某个地方遗漏了一些简单的东西,但我需要开悟。请随时访问 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();
}