質問編集履歴
3
タグの追加
test
CHANGED
File without changes
|
test
CHANGED
File without changes
|
2
変数の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -164,7 +164,7 @@
|
|
164
164
|
|
165
165
|
//選択時の切り替え
|
166
166
|
|
167
|
-
const dropDown = document.getElementById('select
|
167
|
+
const dropDown = document.getElementById('select')
|
168
168
|
|
169
169
|
const branchHall = document.getElementById('branch_hall')
|
170
170
|
|
1
分岐の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -172,7 +172,7 @@
|
|
172
172
|
|
173
173
|
dropDown.addEventListener('change',()=>{
|
174
174
|
|
175
|
-
if(dropDown.value === '
|
175
|
+
if(dropDown.value === 'A'){
|
176
176
|
|
177
177
|
if(branchHall.classList.contains('hidden')){
|
178
178
|
|
@@ -250,6 +250,8 @@
|
|
250
250
|
|
251
251
|
})
|
252
252
|
|
253
|
+
</script>
|
254
|
+
|
253
255
|
```
|
254
256
|
|
255
257
|
googleフォーム内では``` id="select"``` 内のドロップダウンで分岐しています。
|