Javascript 石头剪刀布游戏。我希望游戏成为第一到第三名,但我的代码不起作用。我试图用 if/else 语句创建一个名为 theWinner 的函数,但它没有改变任何东西。我试过在网上寻找其他方法,但它不起作用。我觉得这个功能应该可以工作,但由于某种原因它被忽略了。
// Declaring variables to be used in the functions coming up
let userTally = 0;
let computerTally = 0;
let scoreDiv = document.querySelector("score");
let rockButton = document.getElementById("Rock");
let paperButton = document.getElementById("Paper");
let scissorsButton = document.getElementById("Scissors");
let userScoreShown = document.getElementById("user-score");
let computerScoreShown = document.getElementById("comp-score");
let resultScript = document.querySelector(".result > p");
let gameZone = document.querySelector("game")
// Event listeners for the buttons on the game to trigger the game functions