質問編集履歴

4

追記

2019/11/25 06:46

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -10,6 +10,10 @@
10
10
 
11
11
  なるという結論に至ったのですが動かないので質問いたしました。宜しくお願い致します。
12
12
 
13
+ またはshowResultでしょうか?
14
+
15
+
16
+
13
17
 
14
18
 
15
19
  ```<!DOCTYPE html>
@@ -188,22 +192,26 @@
188
192
 
189
193
  }
190
194
 
191
- //こう?
195
+
192
-
196
+
193
- function hoge(){
197
+ var showResult = function() {
198
+
194
-
199
+ var num1 = Number($('#count_cut').val());//
200
+
201
+ var num2 = Number($('#count_color').val());//
202
+
195
- count_total = parseInt(count_cut) + parseInt(count_color) + parseInt(count_colorCut) ;
203
+ var num3 = Number($('#count_colorCut').val());//
204
+
196
-
205
+ var ans = num1 + num2 + num3;
206
+
197
- count_total.innerHTML = count_total;
207
+ $("#total").html(ans);
198
-
208
+
199
- }
209
+ }
200
210
 
201
211
 
202
212
 
203
213
  };
204
214
 
205
-
206
-
207
215
  </script>
208
216
 
209
217
  </html>

3

追記

2019/11/25 06:46

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -54,23 +54,23 @@
54
54
 
55
55
  <tr>
56
56
 
57
- <td><input type="button" value="plus" id="up_cu"></td>
57
+ <td><input type="button" value="plus" id="up_cu" onclick="hoge()"></td>
58
-
58
+
59
- <td><input type="button" value="plus" id="up_co"></td>
59
+ <td><input type="button" value="plus" id="up_co" onclick="hoge()"></td>
60
-
60
+
61
- <td><input type="button" value="plus" id="up_cc"></td>
61
+ <td><input type="button" value="plus" id="up_cc" onclick="hoge()"></td>
62
-
62
+
63
- <td><input type="button" value="X"id="btn_start" ></td>
63
+ <td><input type="button" value="X"id="btn_start" onclick="hoge()"></td>
64
64
 
65
65
  </tr>
66
66
 
67
67
  <tr>
68
68
 
69
- <td><input type="button" value="minus" id="down_cu"></td>
69
+ <td><input type="button" value="minus" id="down_cu" onclick="hoge()"></td>
70
-
70
+
71
- <td><input type="button" value="minus" id="down_co"></td>
71
+ <td><input type="button" value="minus" id="down_co" onclick="hoge()"></td>
72
-
72
+
73
- <td><input type="button" value="minus" id="down_cc"></td>
73
+ <td><input type="button" value="minus" id="down_cc" onclick="hoge()"></td>
74
74
 
75
75
  <td><input type="button" value="Y"id="btn_stop" ></td>
76
76
 

2

追記

2019/11/25 06:15

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -122,7 +122,9 @@
122
122
 
123
123
 
124
124
 
125
-
125
+ // こう?
126
+
127
+ var count_total = document.getElementById("total");
126
128
 
127
129
 
128
130
 
@@ -186,6 +188,16 @@
186
188
 
187
189
  }
188
190
 
191
+ //こう?
192
+
193
+ function hoge(){
194
+
195
+ count_total = parseInt(count_cut) + parseInt(count_color) + parseInt(count_colorCut) ;
196
+
197
+ count_total.innerHTML = count_total;
198
+
199
+ }
200
+
189
201
 
190
202
 
191
203
  };
@@ -198,6 +210,8 @@
198
210
 
199
211
 
200
212
 
213
+
214
+
201
215
  コード
202
216
 
203
217
  ```

1

追記

2019/11/25 06:13

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -6,7 +6,9 @@
6
6
 
7
7
  どのような記述で実現可能でしょうか、ご教授願います。
8
8
 
9
-
9
+ 自分で調べたところonclickイベントでparseInt(count_cut) + parseInt...と加算の記述をすれば
10
+
11
+ なるという結論に至ったのですが動かないので質問いたしました。宜しくお願い致します。
10
12
 
11
13
 
12
14
 
@@ -122,6 +124,8 @@
122
124
 
123
125
 
124
126
 
127
+
128
+
125
129
  // cuのカウントアップボタンクリック処理
126
130
 
127
131
  up_cu.onclick = function() {