【发布时间】:2014-10-30 01:01:18
【问题描述】:
我正在练习 jquery,并正在尝试构建一个非常基本的井字游戏。
我想将我的 html 表设置为数组形式的网格索引,并根据玩家的点击更改它们的值。目前,我的颜色会根据轮流工作而改变,但我不断收到这个 Uncaught TypeError 引用我的条件语句中的 board[row][col] = x 行。
我的代码:
$(document).ready(function(event) {
var count = 0;
var board = [
[0, 0, 0],
[0, 0, 0],
[0, 0, 0]
];
var row = $(this).parent().index();
var col = $(this).index();
$('td').click(function() {
// if count is even, player 1 is yellow
// if count is odd, player 2 is blue
if (count % 2 === 0) {
$(this).addClass('yellow');
count++;
board[row][col] = 1;
} else {
$(this).addClass('blue');
count++;
board[row][col] = 2;
}
});
});
相关的html:
<div id="main_container">
<h1 id="main_heading" class="heading" >Tic! Tac! Toe!</h1>
<h2 id="winning"></h2>
<table>
<tbody>
<tr class="box_row" >
<td id="box_0_0" class="box_cell" data-row="0" data-col="0" data-clicked="0"></td>
<td id="box_0_1" class="box_cell" data-row="0" data-col="1" data-clicked="0"></td>
<td id="box_0_2" class="box_cell" data-row="0" data-col="2" data-clicked="0"></td>
</tr>
<tr class="box_row">
<td id="box_1_0" class="box_cell" data-row="1" data-col="0" data-clicked="0"></td>
<td id="box_1_1" class="box_cell" data-row="1" data-col="1" data-clicked="0"></td>
<td id="box_1_2" class="box_cell" data-row="1" data-col="2" data-clicked="0"></td>
</tr>
<tr class="box_row">
<td id="box_2_0" class="box_cell" data-row="2" data-col="0" data-clicked="0"></td>
<td id="box_2_1" class="box_cell" data-row="2" data-col="1" data-clicked="0"></td>
<td id="box_2_2" class="box_cell" data-row="2" data-col="2" data-clicked="0"></td>
</tr>
</tbody>
</table>
</div>
相关css:
.yellow {
background-color: #ffc300;
}
.blue {
background-color: #73d2c9;
}
【问题讨论】:
-
也应该使用类似:
td{width:30px;height:30px;background-color:#eee;} -
@Ultimater 我确实有比现有更多的 CSS :)
-
这应该是可能的,无需在
<td>元素上设置任何属性。它们都不是完全必要的。
标签: javascript jquery html arrays tic-tac-toe