質問編集履歴

1

追記

2020/04/10 09:39

投稿

Mario_11
Mario_11

スコア95

test CHANGED
File without changes
test CHANGED
@@ -145,3 +145,103 @@
145
145
  2,どうすればクラスの表示・非表示が出来ますか?
146
146
 
147
147
  参考サイトなども教えていただければ幸いです。よろしくお願いいたします。
148
+
149
+
150
+
151
+ ### 追記
152
+
153
+ base.htmlと連動して表示をした場合、boxの表示・非表示が実行できませんでした。
154
+
155
+ base.htmlと連動して変更した箇所は、`body直下`を`class="container"`で囲ってる所だと思います。
156
+
157
+
158
+
159
+ base.html連動なし
160
+
161
+ ![base.html連動なし](28f5829ceac5732e902bc449819b87fb.png)
162
+
163
+
164
+
165
+ base.html連動
166
+
167
+ ![base.html連動](acfb1004d3c5ba02e9fde08f79ce9a57.png)
168
+
169
+
170
+
171
+ base.htmlの`jQuery`などのバージョンも確認したのですが、おかしな箇所は見つけられませんでした。
172
+
173
+ ```html
174
+
175
+ {% load static %}
176
+
177
+ <!DOCTYPE html>
178
+
179
+ <html lang="ja">
180
+
181
+ <head>
182
+
183
+ <!-- Required meta tags -->
184
+
185
+ <meta charset="utf-8">
186
+
187
+ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
188
+
189
+
190
+
191
+ <!-- Bootstrap CSS -->
192
+
193
+ <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
194
+
195
+ integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
196
+
197
+
198
+
199
+ <title>会員登録サンプル</title>
200
+
201
+ </head>
202
+
203
+ <body>
204
+
205
+ <!-- メインコンテント -->
206
+
207
+ <div class="container">
208
+
209
+ {% block content %}{% endblock %}
210
+
211
+ </div>
212
+
213
+
214
+
215
+ <!-- jQuery first, then Popper.js, then Bootstrap JS -->
216
+
217
+ <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
218
+
219
+ integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
220
+
221
+ crossorigin="anonymous"></script>
222
+
223
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js"
224
+
225
+ integrity="sha384-cs/chFZiN24E4KMATLdqdvsezGxaGsi4hLGOzlXwp5UZB1LY//20VyM2taTB4QvJ"
226
+
227
+ crossorigin="anonymous"></script>
228
+
229
+ <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"
230
+
231
+ integrity="sha384-uefMccjFJAIv6A+rW+L4AHf99KvxDjWSu1z9VI8SKNVmz4sk7buKt/6v9KI65qnm"
232
+
233
+ crossorigin="anonymous"></script>
234
+
235
+ <script src="{% static 'app/js/plugins/responsive-paginate.js' %}"></script>
236
+
237
+ <script src="{% static 'app/js/app.js' %}"></script>
238
+
239
+
240
+
241
+ </body>
242
+
243
+ </html>
244
+
245
+ ```
246
+
247
+ 他に必要なコードがあれば追記させていただきますのでよろしくお願いいたします。