質問編集履歴
1
jQueryのソースの追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -68,6 +68,21 @@
|
|
68
68
|
display: none;
|
69
69
|
width: 200px;
|
70
70
|
}
|
71
|
+
|
72
|
+
↓↓jQuery↓↓
|
73
|
+
|
74
|
+
|
75
|
+
$(function(){
|
76
|
+
|
77
|
+
|
78
|
+
$('#menu').on('mouseenter', function(){
|
79
|
+
$('.sub-menu').toggle();
|
80
|
+
});
|
81
|
+
|
82
|
+
|
83
|
+
});
|
84
|
+
|
85
|
+
|
71
86
|
```
|
72
87
|
|
73
88
|
###試したこと
|