質問編集履歴
2
二重セミコロンの解除
test
CHANGED
File without changes
|
test
CHANGED
@@ -174,7 +174,7 @@
|
|
174
174
|
|
175
175
|
try {
|
176
176
|
|
177
|
-
google.script.run.withSuccessHandler(setQuestion).withFailureHandler(failedAccess).withUserObject(countObj.count, 'QAInfo').QAInfo(countObj.count);
|
177
|
+
google.script.run.withSuccessHandler(setQuestion).withFailureHandler(failedAccess).withUserObject(countObj.count, 'QAInfo').QAInfo(countObj.count);
|
178
178
|
|
179
179
|
} catch (e) {
|
180
180
|
|
1
情報の追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -4,9 +4,9 @@
|
|
4
4
|
|
5
5
|
GASでクイズアプリを作成しています.
|
6
6
|
|
7
|
-
回答ボタン(id属性値がButton1~4)が押された時に, id属性値がnext
|
7
|
+
回答ボタン(id属性値がButton1~4)が押された時に, "次に進む"ボタン(id属性値がnext)にイベントハンドラを追加することによって, "次に進む"(id属性値がnextのボタン)が押された時にnextQuestion関数が呼び出されるようにしたいです.
|
8
|
-
|
8
|
+
|
9
|
-
現状では, scriptタグ内のcheckTheAnswer関数内にある, addEventListenerメソッドによるイベントハンドラの登録
|
9
|
+
現状では, scriptタグ内のcheckTheAnswer関数内にある, addEventListenerメソッドによるイベントハンドラの登録をしているのですが問題文及び選択肢が更新されません. しかし, 1行上の"次に進む"ボタンの背景色の変更は動作しています.
|
10
10
|
|
11
11
|
```gs
|
12
12
|
|