将玩家回合添加到井字游戏(jquery)

k7fdbhmy  于 2021-09-13  发布在  Java
关注(0)|答案(0)|浏览(189)

关闭。这个问题需要详细或明确。它目前不接受答案。
**想改进这个问题吗?**编辑这篇文章,添加细节并澄清问题。

四天前关门。
改进这个问题
/**将单击的方块设置为当前玩家的标记,然后检查是否赢或玩猫游戏。还将更改当前播放机。*/set=函数(){

if ($(this).html() !== EMPTY) {
        return;
    }
    $(this).html(turn);
    console.log($(this));
    moves += 1;
    score[turn] += $(this)[0].indicator;
    console.log(score[turn]);

 /*
 * Determine Players Turn
 */
if (turn == 'X')
{
    alert("O'S TURN");
}
else 
{
    alert("X'S TURN");
}

    if (win(score[turn])) {
        alert(turn + " wins!");
        startNewGame();
    } else if (moves === SIZE * SIZE) {
        alert("Cat\u2019s game!");
        startNewGame();
    } else {
        turn = turn === "X" ? "O" : "X";
    }
},

如何将警报作为字符串而不是警报框输出到html?

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题