0

チェックボックスについて質問です。

ここには 2 つのチェックボックスがあります。両方の (車、バス) チェックボックスを選択する場合は、「Checkall」チェックボックスも選択する必要があります。

どうやってやるの?(選択可能な下は削除できません)

**http://jsfiddle.net/aldimeola1122/xUU4p/10/**

前もって感謝します。

4

1 に答える 1

1

これを試しましたか?live メソッドが「checkAll」の変更メソッドに変更されていることに注意してください。

$(document).ready(function(){
  $('.checkAll').change(function() {
    $('.chc').attr('checked', $( this ).is( ':checked' ) ? 'checked' :'');
  });

  $("#slctble").selectable({
      filter:'td',
      cancel:'td:not(.isaretle)',
      stop: function() {   
         $(".ui-selected input", this).each(function() {
              this.checked= !this.checked
          });//end-ui-selected input
         $('.chc').length == $('.chc:checked').length ?   $('.checkAll').attr('checked', 'checked') : $('.checkAll').attr( 'checked','');           
      }//endStopFunction
  });//endSelectable
});
于 2012-11-13T15:02:48.687 に答える