回答編集履歴
1
修正
answer
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
```JavaScript
|
2
2
|
comment = document.getElementById(id_text.value);
|
3
3
|
↓
|
4
|
-
comment = document.getElementById(id_text).value;
|
4
|
+
comment = document.getElementById('id_text').value;
|
5
5
|
```
|