-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathp1.js
111 lines (82 loc) · 2.19 KB
/
p1.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
let boxes=document.querySelectorAll(".box");
let res=document.querySelector(".reset");
let msgicontainer=document.querySelector(".msg")
let msgi=document.querySelector('.msg')
let turnO=true;
const winpatterns=[
[0,1,2],
[0,3,6],
[0,4,8],
[1,4,7],
[2,5,8],
[2,4,6],
[3,4,5],
[6,7,8]
];
const enableboxes=()=>{
for (let box of boxes){
box.disabled=false
box.innerText="";
}
}
const enabtn=()=>{
turnO=true
enableboxes()
if (msgicontainer) { // Check if the element exists
msgicontainer.classList.add("hide");
}
}
boxes.forEach((box) => { box.addEventListener("click",
()=>{console.log("button was clicked")
if(turnO){ box.innerText="O";
turnO=false;}
else{box.innerText="X"
turnO=true;
}
box.disabled=true;
winner();
})
})
const re =()=>{ res . removeEventListener(
"click", ()=>{
for(let pattern of winpatterns){
let pos1val=boxes[pattern[0]].innerText;
let pos2val=boxes[pattern[1]].innerText;
let pos3val=boxes[pattern[2]].innerText;
if(pos1val!="" && pos2val!="" && pos3val!=""){
if(pos1val===pos2val && pos3val===pos3val){
console.log("winner")
msg(pos1val)
}
}
}
}
)}
const disbtn=()=>{
for(let box of boxes){
box.disabled=true
}
}
const msg=(pos1val)=>{
if (msgi) { // Check if msgi is defined
msgi.innerText = `Congratulations! The winner is ${pos1val}`;
}
if (msgicontainer) { // Check if msgicontainer is defined
msgicontainer.classList.remove("hide");
}
disbtn()
}
const winner =()=>{
for(let pattern of winpatterns){
let pos1val=boxes[pattern[0]].innerText;
let pos2val=boxes[pattern[1]].innerText;
let pos3val=boxes[pattern[2]].innerText;
if(pos1val!="" && pos2val!="" && pos3val!=""){
if(pos1val===pos2val && pos3val===pos3val){
console.log("winner")
msg(pos1val)
}
}
}
}
res.addEventListener("click",enabtn)