我正在为我的javascript类构建一个游戏并且已经打了一堵砖墙。基本概念是每个结果都应该触发动画并播放声音。我有我的其他声明,我可以触发动画,但是当我放入音频进行测试时,它将无法正常工作。任何帮助表示赞赏。
function gameOver(){
if (userChoice == d1 && chosenCup == d2) {
alert("Congrats, You have Won!");
} else if (chosenCup == d2 && userChoice != d1) {
alert("You almost did it.");
} else {
var audio = $("#sound1")[0];
audio.play();
}
}