-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathother3.js
117 lines (98 loc) · 3.02 KB
/
other3.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
108
109
110
111
112
113
114
115
const atargetDiv = document.getElementById("ashow");
const abtn = document.getElementById("alink");
/*btn.onclick = function () {
if (targetDiv.style.display !== "none") {
targetDiv.style.display = "none";
}
else {
targetDiv.style.display = "block";
}
};*/
abtn.onclick = function () {
if (atargetDiv.style.display == "none") {
atargetDiv2.style.display = "none";
atargetDiv3.style.display = "none";
atargetDiv4.style.display = "none";
atargetDiv5.style.display = "none";
atargetDiv6.style.display = "none";
atargetDiv.style.display = "block";
}
else {
atargetDiv.style.display = "none";
}
};
const atargetDiv2 = document.getElementById("ashow2");
const abtn2 = document.getElementById("alink2");
abtn2.onclick = function () {
if (atargetDiv2.style.display == "none") {
atargetDiv.style.display = "none";
atargetDiv3.style.display = "none";
atargetDiv4.style.display = "none";
atargetDiv5.style.display = "none";
atargetDiv6.style.display = "none";
atargetDiv2.style.display = "block";
}
else {
atargetDiv2.style.display = "none";
}
};
const atargetDiv3 = document.getElementById("ashow3");
const abtn3 = document.getElementById("alink3");
abtn3.onclick = function () {
if (atargetDiv3.style.display == "none") {
atargetDiv.style.display = "none";
atargetDiv2.style.display = "none";
atargetDiv4.style.display = "none";
atargetDiv5.style.display = "none";
atargetDiv6.style.display = "none";
atargetDiv3.style.display = "block";
}
else {
atargetDiv3.style.display = "none";
}
};
const atargetDiv4 = document.getElementById("ashow4");
const abtn4 = document.getElementById("alink4");
abtn4.onclick = function () {
if (atargetDiv4.style.display == "none") {
atargetDiv.style.display = "none";
atargetDiv2.style.display = "none";
atargetDiv3.style.display = "none";
atargetDiv5.style.display = "none";
atargetDiv6.style.display = "none";
atargetDiv4.style.display = "block";
}
else {
atargetDiv4.style.display = "none";
}
};
const atargetDiv5 = document.getElementById("ashow5");
const abtn5 = document.getElementById("alink5");
abtn5.onclick = function () {
if (atargetDiv5.style.display == "none") {
atargetDiv.style.display = "none";
atargetDiv2.style.display = "none";
atargetDiv3.style.display = "none";
atargetDiv4.style.display = "none";
atargetDiv6.style.display = "none";
atargetDiv5.style.display = "block";
}
else {
atargetDiv5.style.display = "none";
}
};
const atargetDiv6 = document.getElementById("ashow6");
const abtn6 = document.getElementById("alink6");
abtn6.onclick = function () {
if (atargetDiv6.style.display == "none") {
atargetDiv.style.display = "none";
atargetDiv2.style.display = "none";
atargetDiv3.style.display = "none";
atargetDiv4.style.display = "none";
atargetDiv5.style.display = "none";
atargetDiv6.style.display = "block";
}
else {
atargetDiv6.style.display = "none";
}
};