回答編集履歴

4

変更

2020/02/26 00:18

投稿

NEO_PLANETT-777
NEO_PLANETT-777

スコア333

test CHANGED
@@ -8,11 +8,13 @@
8
8
 
9
9
  $(function() {
10
10
 
11
+ var tmp = parseInt($(this).text());
12
+
11
13
  $('.box').on('click',function() {
12
14
 
13
- if ( parseInt($(this).text()) < 上限値 ) {
15
+ if ( tmp < 上限値 ) {
14
16
 
15
- $(this).text(parseInt($(this).text()) + 1);
17
+ $(this).text(tmp + 1);
16
18
 
17
19
  }
18
20
 
@@ -22,9 +24,9 @@
22
24
 
23
25
  $('.box').on('contextmenu',function(){
24
26
 
25
- if ( parseInt($(this).text()) > 下限値 ) {
27
+ if ( tmp > 下限値 ) {
26
28
 
27
- $(this).text(parseInt($(this).text()) - 1);
29
+ $(this).text(tmp - 1);
28
30
 
29
31
  }
30
32
 

3

訂正

2020/02/26 00:18

投稿

NEO_PLANETT-777
NEO_PLANETT-777

スコア333

test CHANGED
@@ -10,9 +10,9 @@
10
10
 
11
11
  $('.box').on('click',function() {
12
12
 
13
- if ( parseInt($(this).text()) > 限値 ) {
13
+ if ( parseInt($(this).text()) < 限値 ) {
14
14
 
15
- $(this).text(parseInt($(this).text()) - 1);
15
+ $(this).text(parseInt($(this).text()) + 1);
16
16
 
17
17
  }
18
18
 
@@ -22,9 +22,9 @@
22
22
 
23
23
  $('.box').on('contextmenu',function(){
24
24
 
25
- if ( parseInt($(this).text()) < 限値 ) {
25
+ if ( parseInt($(this).text()) > 限値 ) {
26
26
 
27
- $(this).text(parseInt($(this).text()) + 1);
27
+ $(this).text(parseInt($(this).text()) - 1);
28
28
 
29
29
  }
30
30
 

2

訂正

2020/02/26 00:15

投稿

NEO_PLANETT-777
NEO_PLANETT-777

スコア333

test CHANGED
@@ -12,7 +12,7 @@
12
12
 
13
13
  if ( parseInt($(this).text()) > 下限値 ) {
14
14
 
15
- $(this).text(parseInt($(this).text()) + 1);
15
+ $(this).text(parseInt($(this).text()) - 1);
16
16
 
17
17
  }
18
18
 
@@ -24,7 +24,7 @@
24
24
 
25
25
  if ( parseInt($(this).text()) < 上限値 ) {
26
26
 
27
- $(this).text(parseInt($(this).text()) - 1);
27
+ $(this).text(parseInt($(this).text()) + 1);
28
28
 
29
29
  }
30
30
 

1

誤記訂正

2020/02/26 00:13

投稿

NEO_PLANETT-777
NEO_PLANETT-777

スコア333

test CHANGED
@@ -10,7 +10,7 @@
10
10
 
11
11
  $('.box').on('click',function() {
12
12
 
13
- if ( $(this).text() > 下限値 ) {
13
+ if ( parseInt($(this).text()) > 下限値 ) {
14
14
 
15
15
  $(this).text(parseInt($(this).text()) + 1);
16
16
 
@@ -22,7 +22,7 @@
22
22
 
23
23
  $('.box').on('contextmenu',function(){
24
24
 
25
- if ( $(this).text() < 上限値 ) {
25
+ if ( parseInt($(this).text()) < 上限値 ) {
26
26
 
27
27
  $(this).text(parseInt($(this).text()) - 1);
28
28