0

私はそのようにチェックボックスのグループを選択しています

$(tbl).find('input[type=checkbox]').prop('checked', this.checked);

alt="disabled" プロパティを持つチェックボックスを除外したいのですが、機能させることができません。誰か助けてください。

4

2 に答える 2

0
$(tbl).find('input[type=checkbox][alt!="disabled"]').prop('checked', this.checked);

私はいつも自分でフィルター関数を使う傾向があります:

$(tbl).find('input[type="checkbox"]').filter(function() {
    return $(this).attr('alt') != 'disabled';
}).prop('checked', this.checked);
于 2013-02-06T22:42:49.000 に答える
0
$(tbl).find('input[type=checkbox]')
      .not('[alt=disabled]')
      .prop('checked', this.checked);

于 2013-02-06T22:44:43.743 に答える