質問編集履歴
2
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -11,6 +11,12 @@
|
|
11
11
|
game.js:22 Uncaught TypeError: Cannot read property **'btn'** of undefinedとは異なっていました。
|
12
12
|
|
13
13
|
OとBtnの違いなのでBtnについて教えていただければわかるかもしれません。
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
[Cannot set property 'textContent' of nullエラーに関して](https://teratail.com/questions/92844)
|
18
|
+
|
19
|
+
[Uncaught TypeError: Cannot read property '0' of undefinedエラーに関して](https://teratail.com/questions/77117)
|
14
20
|
|
15
21
|
|
16
22
|
|
1
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -4,11 +4,31 @@
|
|
4
4
|
|
5
5
|
|
6
6
|
|
7
|
+
なお、teratail内に似た質問があったのですが、
|
8
|
+
|
9
|
+
game.js:22 Uncaught TypeError: Cannot read property **'0'** of undefinedとあり、私の質問するコード、
|
10
|
+
|
11
|
+
game.js:22 Uncaught TypeError: Cannot read property **'btn'** of undefinedとは異なっていました。
|
12
|
+
|
13
|
+
OとBtnの違いなのでBtnについて教えていただければわかるかもしれません。
|
14
|
+
|
15
|
+
|
16
|
+
|
7
17
|
エラー
|
8
18
|
|
9
|
-
Uncaught TypeError: Cannot set property 'textContent' of null
|
19
|
+
**Uncaught TypeError: Cannot set property 'textContent' of null**
|
10
20
|
|
21
|
+
→エラーは timer.textContent = '制限時間:' + -TIME- + '秒'; にあるようです。
|
22
|
+
|
23
|
+
|
24
|
+
|
11
|
-
game.js:22 Uncaught TypeError: Cannot read property 'btn' of undefined
|
25
|
+
**game.js:22 Uncaught TypeError: Cannot read property 'btn' of undefined**
|
26
|
+
|
27
|
+
→エラーは const countdown = setInterval(function() { にあるようです。
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
|
12
32
|
|
13
33
|
|
14
34
|
|