【问题标题】:JavaScript Uncaught TypeError: Cannot set property '-1' of undefinedJavaScript Uncaught TypeError:无法设置未定义的属性“-1”
【发布时间】: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 :)
  • 这应该是可能的,无需在&lt;td&gt; 元素上设置任何属性。它们都不是完全必要的。

标签: javascript jquery html arrays tic-tac-toe


【解决方案1】:

问题是你在哪里读取索引值,你需要在点击处理程序中读取它

$(document).ready(function (event) {

    var count = 0;

    var board = [
        [0, 0, 0],
        [0, 0, 0],
        [0, 0, 0]
    ];

    //here this is the document object
    $('td').click(function () {

        //reading index values should be inside the click handler, here `this` refers to the clicked `td` element
        var row = $(this).parent().index();
        var col = $(this).index();


        // 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;
        }
    });
});

【讨论】:

  • 啊,我明白了。谢谢!
猜你喜欢
  • 2014-06-02
  • 1970-01-01
  • 1970-01-01
  • 2017-08-25
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2015-06-08
  • 1970-01-01
相关资源
最近更新 更多