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 回答