質問編集履歴

1

コードの修正

2020/05/16 23:04

投稿

pr_777
pr_777

スコア20

test CHANGED
File without changes
test CHANGED
@@ -79,3 +79,43 @@
79
79
 
80
80
 
81
81
  ご確認の程、お願い致します。
82
+
83
+
84
+
85
+ ※補足
86
+
87
+
88
+
89
+ ```javascript
90
+
91
+ $(function () {
92
+
93
+ const check = $("input[type='checkbox']");
94
+
95
+ let tf = false;
96
+
97
+ check.on('change', function () {
98
+
99
+ var active = $('.submit').prop('disabled', true);
100
+
101
+ if (active) {
102
+
103
+ $('.submit').css('background-color', '#E83827').prop('disabled', false);
104
+
105
+ check.prop('checked', (tf = !tf));
106
+
107
+ return false;
108
+
109
+ } else {
110
+
111
+ $('.submit').css('background-color', '#a5a5a5').prop('disabled', true);
112
+
113
+ check.prop('checked', (tf = tf));
114
+
115
+ return true;
116
+
117
+ }
118
+
119
+ });
120
+
121
+ ```