回答編集履歴
2
文書の改善
test
CHANGED
@@ -19,3 +19,13 @@
|
|
19
19
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
|
20
20
|
|
21
21
|
```
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
念のため追記します
|
26
|
+
|
27
|
+
質問文に記載のコードに**そのまま**上記のコードを載せただけでは動きません。
|
28
|
+
|
29
|
+
navbarには展開に対応するbutton要素を作成します。
|
30
|
+
|
31
|
+
記載方法は公式ページを見てください
|
1
文書の改善
test
CHANGED
@@ -3,3 +3,19 @@
|
|
3
3
|
下記サイトの[JavaScript を必要とするコンポーネントを表示]の個所を見てみてください。
|
4
4
|
|
5
5
|
[bootstrap公式ページ](https://getbootstrap.jp/docs/4.4/getting-started/introduction/)
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
※以下を記載すると動きます
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
```html
|
14
|
+
|
15
|
+
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
|
16
|
+
|
17
|
+
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
|
18
|
+
|
19
|
+
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
|
20
|
+
|
21
|
+
```
|