我正在制作一个游戏,我想在将敌人加载到游戏中之前将它们存储为对象。
var that = this;
this.enemies = {
that.redCar : document.getElementById('red'),
that.sportsCar : document.getElementById('sport')
}
但这给了我一个语法错误。我认为that.redCar : document.getElementById('red')
在一个对象中将等于在一个对象that.redCar = document.getElementById('red')
之外。
我哪里错了?