質問編集履歴
1
一部関数が足りなかったので追加しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -176,6 +176,38 @@
|
|
176
176
|
|
177
177
|
```javascript
|
178
178
|
|
179
|
+
dis_no:function(word){
|
180
|
+
|
181
|
+
let x = "";
|
182
|
+
|
183
|
+
if(word != "HTML"){
|
184
|
+
|
185
|
+
x = "display: none;"
|
186
|
+
|
187
|
+
}else{
|
188
|
+
|
189
|
+
x = "";
|
190
|
+
|
191
|
+
}
|
192
|
+
|
193
|
+
return x
|
194
|
+
|
195
|
+
},
|
196
|
+
|
197
|
+
current_path:function(num){
|
198
|
+
|
199
|
+
let x = "";
|
200
|
+
|
201
|
+
if(num == "HTML"){
|
202
|
+
|
203
|
+
x = "is-current_2";
|
204
|
+
|
205
|
+
}
|
206
|
+
|
207
|
+
return x
|
208
|
+
|
209
|
+
},
|
210
|
+
|
179
211
|
$(function() {
|
180
212
|
|
181
213
|
// ①Tabの切替トリガー
|