回答編集履歴

1

訂正

2021/04/15 13:13

投稿

FromMZ1500
FromMZ1500

スコア496

test CHANGED
@@ -1,12 +1,12 @@
1
- 'var questionForm = document.querySelector("#question");'
1
+ `var questionForm = document.querySelector("#question");`
2
2
 
3
3
 
4
4
 
5
- 'var questionForm = document.getElementsByName("question")[0];'
5
+ `var questionForm = document.getElementsByName("question")[0];`
6
6
 
7
7
  もしくは
8
8
 
9
- 'var questionForm = document.querySelector("textarea[name='question']");'
9
+ `var questionForm = document.querySelector("textarea[name='question']");`
10
10
 
11
11
  に。
12
12