我正在關注使用畫布和JavaScript在HTML中創建簡單遊戲的在線教程。我試圖加載什麼似乎是完全正常的代碼,但沒有什麼是顯示在屏幕上了,我收到在控制檯說未捕獲的SyntaxError:意外的令牌=在Chrome中
未捕獲的SyntaxError錯誤:意外的記號=
這是我的代碼的部分,其似乎是不正確的:
player = {
x: null,
y: null,
width: 20,
height: 100,
update = function() {},
draw = function() {
ctx.fillRect(this.x, this.y, this.width, this.height)
};
};
PS - 此錯誤顯示在Chrome中。
你應該向我們展示前一行 - 下一行 – axelduch 2015-04-01 08:34:27
我不知道你的exac t代碼,但我谷歌,發現這個http://stackoverflow.com/questions/19699257/uncaught-syntaxerror-unexpected-token-in-google-chrome – 2015-04-01 08:37:17
我剛剛閱讀該頁面,但我仍然不知道該怎麼辦! – 2015-04-01 08:40:22