now correctly stores ellements
This commit is contained in:
parent
1cc661be2d
commit
341ee0eb54
41
src/code.js
41
src/code.js
@ -1,21 +1,26 @@
|
|||||||
var board =
|
var board;
|
||||||
[
|
|
||||||
|
function load()
|
||||||
|
{
|
||||||
|
board =
|
||||||
[
|
[
|
||||||
[0, document.getElementById("id00")],
|
[
|
||||||
[0, document.getElementById("id01")],
|
[0, document.getElementById("id00")],
|
||||||
[0, document.getElementById("id02")]
|
[0, document.getElementById("id01")],
|
||||||
],
|
[0, document.getElementById("id02")]
|
||||||
[
|
],
|
||||||
[0, document.getElementById("id10")],
|
[
|
||||||
[0, document.getElementById("id11")],
|
[0, document.getElementById("id10")],
|
||||||
[0, document.getElementById("id12")]
|
[0, document.getElementById("id11")],
|
||||||
],
|
[0, document.getElementById("id12")]
|
||||||
[
|
],
|
||||||
[0, document.getElementById("id20")],
|
[
|
||||||
[0, document.getElementById("id21")],
|
[0, document.getElementById("id20")],
|
||||||
[0, document.getElementById("id22")]
|
[0, document.getElementById("id21")],
|
||||||
]
|
[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