質問編集履歴
3
修正の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -20,7 +20,7 @@
|
|
20
20
|
|
21
21
|
const parent = oldTable.parentNode;
|
22
22
|
|
23
|
-
parent.replaceChild(
|
23
|
+
parent.replaceChild(oldTable, newTable);
|
24
24
|
|
25
25
|
```
|
26
26
|
|
@@ -152,7 +152,7 @@
|
|
152
152
|
|
153
153
|
const parent = docTable.parentNode;
|
154
154
|
|
155
|
-
parent.replaceChild(
|
155
|
+
parent.replaceChild(docTable, newTable);
|
156
156
|
|
157
157
|
|
158
158
|
|
2
newTableとdocTableが逆だった
test
CHANGED
File without changes
|
test
CHANGED
@@ -20,7 +20,7 @@
|
|
20
20
|
|
21
21
|
const parent = oldTable.parentNode;
|
22
22
|
|
23
|
-
parent.replaceChild(
|
23
|
+
parent.replaceChild(newTable, oldTable);
|
24
24
|
|
25
25
|
```
|
26
26
|
|
@@ -152,7 +152,7 @@
|
|
152
152
|
|
153
153
|
const parent = docTable.parentNode;
|
154
154
|
|
155
|
-
parent.replaceChild(
|
155
|
+
parent.replaceChild(newTable, docTable);
|
156
156
|
|
157
157
|
|
158
158
|
|
1
誤字修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -24,7 +24,11 @@
|
|
24
24
|
|
25
25
|
```
|
26
26
|
|
27
|
+
これで問題なく動くと思っているのですが、
|
28
|
+
|
27
|
-
|
29
|
+
調べても同じようなソースコードで問題なく動いてそうな感じです。
|
30
|
+
|
31
|
+
何が間違っているのでしょうか。
|
28
32
|
|
29
33
|
|
30
34
|
|