ご閲覧いただきありがとうございます。
現在実装している処理としては下記の2つです。
①2つのチェックボックスを選ぶと2つ以上チェックボックスが選択できないようにdisableをかける。
②チェックを入れると背景色が変わる、外すと色が消える
こちらですが、ページ読み込み時、ブラウザバック時、更新時に状況を維持していてほしいのですが初心者なもんでして上手くいきません。。
現在の状況としては下記の通りです。
①の実装 ⇒ ページ読み込み時、ブラウザバック時、更新時にdisableのはずが、チェックボックスが入ったまま3つ目が選択できてしまう。
②の実装 ⇒ ページ読み込み時、ブラウザバック時、更新時にチェックは入っているが背景色が反映されていない。
という感じです。宜しくお願い致します....
1jquery
1; (function ($) { 2 "use strict"; 3 window.onload = function(){ 4 CheckLimit(); 5 CheckColor(); 6 } 7 8function CheckLimit() { 9 $('table input').change(function () { 10 // チェックが入ったチェックボックスの個数を変数に格納 11 var len = $('table input:checked').length; 12 // チェックが2つ以上入ったら 13 if (len >= 2) { 14 // disabledを付けてチェックできなくする 15 $('table input').not(':checked').prop('disabled', true); 16 // チェックが2つ未満だったら 17 } else { 18 // disabledを削除してチェックできるようになる 19 $('table input').not(':checked').prop('disabled', false); 20 } 21 }); 22}
2jquery
1function CheckColor() { 2 $('table input').change(function () { 3 var prop = $(this).prop('checked'); 4 // チェックをつけたら 5 if (prop) { 6 // 背景色class設定 7 $(this).closest('td').addClass('CheckedSession'); 8 } else { 9 // 背景色classリセット 10 $(this).closest('td').removeClass('CheckedSession'); 11 } 12 }); 13} 14 15$(function () { 16 CheckLimit(); 17 CheckColor(); 18}); 19}) (jQuery);
html
1<table class="table"> 2 <tbody> 3 <tr> 4 <th>時間</th> 5 <th>9:00 ~ 10:00</th> 6 <th>10:00 ~ 11:00</th> 7 <th>12:00 ~ 14:00</th> 8 <th>14:00 ~ 16:00</th> 9 </tr> 10 <tr> 11 <th>7月22日(水)</th> 12 <td> 13 <div class="code"> <input type="checkbox" name="c1" value="1" disabled=""></div> 14 </td> 15 </tr> 16</table>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/23 03:28