私はそのようにチェックボックスのグループを選択しています
$(tbl).find('input[type=checkbox]').prop('checked', this.checked);
alt="disabled" プロパティを持つチェックボックスを除外したいのですが、機能させることができません。誰か助けてください。
私はそのようにチェックボックスのグループを選択しています
$(tbl).find('input[type=checkbox]').prop('checked', this.checked);
alt="disabled" プロパティを持つチェックボックスを除外したいのですが、機能させることができません。誰か助けてください。
$(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);
$(tbl).find('input[type=checkbox]')
.not('[alt=disabled]')
.prop('checked', this.checked);