now correctly stores ellements
This commit is contained in:
parent
1cc661be2d
commit
341ee0eb54
13
src/code.js
13
src/code.js
@ -1,5 +1,9 @@
|
|||||||
var board =
|
var board;
|
||||||
[
|
|
||||||
|
function load()
|
||||||
|
{
|
||||||
|
board =
|
||||||
|
[
|
||||||
[
|
[
|
||||||
[0, document.getElementById("id00")],
|
[0, document.getElementById("id00")],
|
||||||
[0, document.getElementById("id01")],
|
[0, document.getElementById("id01")],
|
||||||
@ -15,7 +19,8 @@ var board =
|
|||||||
[0, document.getElementById("id21")],
|
[0, document.getElementById("id21")],
|
||||||
[0, document.getElementById("id22")]
|
[0, document.getElementById("id22")]
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
}
|
||||||
|
|
||||||
var ids =
|
var ids =
|
||||||
{
|
{
|
||||||
@ -49,5 +54,5 @@ function move(id)
|
|||||||
charater = "O"
|
charater = "O"
|
||||||
}
|
}
|
||||||
|
|
||||||
board[ids[id] [0]] [ids[id] [1]] [1].innerHTML = charater;
|
board[ids[id][0]][ids[id][1]][1].innerHTML = charater;
|
||||||
}
|
}
|
@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
<title>Tic Tac Toe</title>
|
<title>Tic Tac Toe</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body onload="load();">
|
||||||
<table id='board'>
|
<table id='board'>
|
||||||
<tr>
|
<tr>
|
||||||
<th><button onmousedown="move('00');" id='id00'></button></th>
|
<th><button onmousedown="move('00');" id='id00'></button></th>
|
||||||
|
Loading…
Reference in New Issue
Block a user