html5五子棋
html5五子棋 var fiveChess = { NO_CHESS: 0, BLACK_CHESS: -1, WHITE_CHESS: 1, chessArr: [], //记录棋子 chessBoardHtml: "", humanPlayer: "black", //玩家棋子颜色 AIPlayer: "white", //AI棋子颜色 isPlayerTurn: true, //轮到player下棋 totalGames: cookieHandle.getCookie("totalGames") || 0, //总局数 winGames: cookieHandle.
用户评论