質問編集履歴
6
test
CHANGED
File without changes
|
test
CHANGED
@@ -207,3 +207,9 @@
|
|
207
207
|
この動画を参考にしました。
|
208
208
|
|
209
209
|
https://www.youtube.com/watch?v=fAluwAmHrws&t=311s
|
210
|
+
|
211
|
+
|
212
|
+
|
213
|
+
jaのelse文以前までは反映がされ、
|
214
|
+
|
215
|
+
以降は記入時も無記入時も反映がされていません。
|
5
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
正誤ゲームで、不正解のアラートを出したい
|
4
4
|
|
5
|
-
|
5
|
+
|
6
6
|
|
7
7
|
Javascriptで、Youtubeの解説を見ながら、if文、else文を用いて簡単な4択のクイズゲームを作成しようとしていました。その際、正解のボタンをクリックすると正常にアラートが出るのですが、不正解のボタンを押しても反映されず、consoleに以下のようなエラーが出ました。
|
8
8
|
|
4
回答指摘の該当欄の削除
test
CHANGED
File without changes
|
test
CHANGED
@@ -110,8 +110,6 @@
|
|
110
110
|
|
111
111
|
|
112
112
|
|
113
|
-
<link rel="manifest" href="site.webmanifest">
|
114
|
-
|
115
113
|
<link rel="apple-touch-icon" href="icon.png">
|
116
114
|
|
117
115
|
<!-- Place favicon.ico in the root directory -->
|
3
window.alert("不正解!")の閉じタグを追加 効果はなし
test
CHANGED
File without changes
|
test
CHANGED
@@ -70,7 +70,7 @@
|
|
70
70
|
|
71
71
|
}else{
|
72
72
|
|
73
|
-
window.alert("不正解!")
|
73
|
+
window.alert("不正解!");
|
74
74
|
|
75
75
|
}
|
76
76
|
|
2
HTMLのソースコードを追記した
test
CHANGED
File without changes
|
test
CHANGED
@@ -78,6 +78,122 @@
|
|
78
78
|
|
79
79
|
|
80
80
|
|
81
|
+
|
82
|
+
|
83
|
+
HTML
|
84
|
+
|
85
|
+
<!doctype html>
|
86
|
+
|
87
|
+
<html class="no-js" lang="">
|
88
|
+
|
89
|
+
|
90
|
+
|
91
|
+
<head>
|
92
|
+
|
93
|
+
<meta charset="utf-8">
|
94
|
+
|
95
|
+
<title></title>
|
96
|
+
|
97
|
+
<meta name="description" content="">
|
98
|
+
|
99
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
<meta property="og:title" content="">
|
104
|
+
|
105
|
+
<meta property="og:type" content="">
|
106
|
+
|
107
|
+
<meta property="og:url" content="">
|
108
|
+
|
109
|
+
<meta property="og:image" content="">
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
<link rel="manifest" href="site.webmanifest">
|
114
|
+
|
115
|
+
<link rel="apple-touch-icon" href="icon.png">
|
116
|
+
|
117
|
+
<!-- Place favicon.ico in the root directory -->
|
118
|
+
|
119
|
+
|
120
|
+
|
121
|
+
<!-- CSS only -->
|
122
|
+
|
123
|
+
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
|
124
|
+
|
125
|
+
|
126
|
+
|
127
|
+
<meta name="theme-color" content="#fafafa">
|
128
|
+
|
129
|
+
</head>
|
130
|
+
|
131
|
+
|
132
|
+
|
133
|
+
<body>
|
134
|
+
|
135
|
+
<div class="container">
|
136
|
+
|
137
|
+
|
138
|
+
|
139
|
+
<div class="jumbotron mt-5">
|
140
|
+
|
141
|
+
<div class="d-flex justify-content-center">
|
142
|
+
|
143
|
+
<div id="js-question" class="alert alert-primary" role="alert">
|
144
|
+
|
145
|
+
A simple primary alert—check it out!
|
146
|
+
|
147
|
+
</div>
|
148
|
+
|
149
|
+
</div>
|
150
|
+
|
151
|
+
|
152
|
+
|
153
|
+
<div id="js-items" class="d-flex justify-content-center">
|
154
|
+
|
155
|
+
<div class="m-2">
|
156
|
+
|
157
|
+
<button type="button" id="js-btn-1" class="btn btn-primary">Primary</button>
|
158
|
+
|
159
|
+
</div>
|
160
|
+
|
161
|
+
<div class="m-2">
|
162
|
+
|
163
|
+
<button type="button" id="js-btn-2" class="btn btn-primary">Primary</button>
|
164
|
+
|
165
|
+
</div>
|
166
|
+
|
167
|
+
<div class="m-2">
|
168
|
+
|
169
|
+
<button type="button" id="js-btn-3" class="btn btn-primary">Primary</button>
|
170
|
+
|
171
|
+
</div>
|
172
|
+
|
173
|
+
<div class="m-2">
|
174
|
+
|
175
|
+
<button type="button" id="js-btn-4" class="btn btn-primary">Primary</button>
|
176
|
+
|
177
|
+
</div>
|
178
|
+
|
179
|
+
</div>
|
180
|
+
|
181
|
+
</div>
|
182
|
+
|
183
|
+
</div>
|
184
|
+
|
185
|
+
|
186
|
+
|
187
|
+
<script src="app.js"></script>
|
188
|
+
|
189
|
+
</body>
|
190
|
+
|
191
|
+
|
192
|
+
|
193
|
+
</html>
|
194
|
+
|
195
|
+
|
196
|
+
|
81
197
|
### 試したこと
|
82
198
|
|
83
199
|
スペルミスのチェック、CORSとは何かを検索
|
1
参照した動画のURLを追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -89,3 +89,7 @@
|
|
89
89
|
|
90
90
|
|
91
91
|
ここにより詳細な情報を記載してください。
|
92
|
+
|
93
|
+
この動画を参考にしました。
|
94
|
+
|
95
|
+
https://www.youtube.com/watch?v=fAluwAmHrws&t=311s
|