回答編集履歴

1

書き方の追記

2019/12/04 14:41

投稿

thyda.eiqau
thyda.eiqau

スコア2982

test CHANGED
@@ -3,3 +3,51 @@
3
3
 
4
4
 
5
5
  はい、できます。
6
+
7
+
8
+
9
+ ----
10
+
11
+ Dec 4, 2019 11:40pm 追記
12
+
13
+ > 可能であればその書き方を教えて頂けると幸いでございます。
14
+
15
+
16
+
17
+ とのことですので、追記します。
18
+
19
+
20
+
21
+ ちなみに、id属性にスペースを含めてはいけません ([MDM](https://developer.mozilla.org/ja/docs/Web/HTML/Global_attributes/id))
22
+
23
+ ```html
24
+
25
+ <script>
26
+
27
+ var fruits = ["りんご", "ばなな", "ぶどう"];
28
+
29
+
30
+
31
+ function arrayFunction() {
32
+
33
+ const elm = document.getElementById('text_id');
34
+
35
+ fruits.push(elm.value);
36
+
37
+
38
+
39
+ document.getElementById('array011').innerHTML = elm.value;
40
+
41
+ }
42
+
43
+ </script>
44
+
45
+
46
+
47
+ <input type="text" id="text_id" name="fruit">
48
+
49
+ <button onclick="arrayFunction()">クリック</button>
50
+
51
+ <p id="array011"></p>
52
+
53
+ ```