Closed. This question is off-topic。它当前不接受答案。
                            
                        
                    
                
                            
                                
                
                        
                            
                        
                    
                        
                            想改善这个问题吗? Update the question,所以它是on-topic,用于堆栈溢出。
                        
                        2年前关闭。
                                                                                            
                
        
这是我的code(我正在链接它,因为我不知道问题出在哪里,并且我不想将所有链接都链接到这篇文章)。我在控制台中收到此错误:javascript - 控制台错误:“ Uncaught SyntaxError :意外的 token :正在学习的 Sprite ”-LMLPHP
错误在第57行,但我不知道出了什么问题。

rectangle = {
    height : 32,
    jumping : true,
    width : 32;
    x : 144,
    x_velocity : 0,
    y : 0,
    y_velocity : 0
};

最佳答案

只是一个引起您错误的小语法错误。更新此行:

rectangle = {
                height : 32,
                jumping : true,
                width : 32, // Replace ; with ,
                x : 144,
                x_velocity : 0,
                y : 0,
                y_velocity : 0
            };

10-05 20:58
查看更多