質問編集履歴

1

解決

2020/11/03 06:35

投稿

yuujiMotoki
yuujiMotoki

スコア90

test CHANGED
File without changes
test CHANGED
@@ -99,3 +99,31 @@
99
99
 
100
100
 
101
101
  すみませんがJS初心者ですので、ゆるめに見ていただければと思います。
102
+
103
+
104
+
105
+ #自己解決
106
+
107
+
108
+
109
+ 調べまくってようやくゴールにたと蹴りつきました。
110
+
111
+
112
+
113
+
114
+
115
+ ```javascript
116
+
117
+
118
+
119
+ Object.keys(dict).map(function(key,index){
120
+
121
+ document.getElementById('t'+index).textContent = key;
122
+
123
+ document.getElementById('f'+index).action += "/"+dict[key];
124
+
125
+ });
126
+
127
+
128
+
129
+ ```