回答編集履歴

1

chousei

2021/07/06 03:09

投稿

yambejp
yambejp

スコア116395

test CHANGED
@@ -20,7 +20,11 @@
20
20
 
21
21
  window.addEventListener('DOMContentLoaded', async()=>{
22
22
 
23
+ let data=[];
24
+
23
- const data=await fetch("sample.json").then(res=>res.json());
25
+ data=await fetch("sample.json").then(res=>res.json()); //JSONを呼ばないときはこの行をコメントアウト
26
+
27
+ if(data){
24
28
 
25
29
  const t=document.querySelector('#t1 tbody');
26
30
 
@@ -39,6 +43,8 @@
39
43
  tr1.querySelector('td:nth-child(2)').textContent=x.className;
40
44
 
41
45
  });
46
+
47
+ }
42
48
 
43
49
  });
44
50