我很抱歉没有更好的标题..
我成功使用以下行:
$('.checkall').unbind('click').click(function () {
$(this).parents('fieldset:eq(0)').find(':checkbox').attr('checked', this.checked);
});
单击 .checkall 时,将检查字段集中的所有表行。现在我在我的表格中使用分页,它将不在首页上的行设置为类'canView display:none';
如何使用 canView 类过滤字段集中的每个复选框,但没有 display:none;
IE:
$(this).parents('fieldset:eq(0)').find('tr > canView:VISIBLE').find(':checkbox').attr('checked', this.checked);
但这不起作用他们的方式我认为它应该:)
注意:每个 tr 都有 canView 类,分页时只改变显示。