我继承了以下代码:
// Show / Hide table rows from checkboxes
$("table.data#report-table .warning").toggle($("#warning_checkbox").is(":checked"));
$("#warning_checkbox").click(function() {
$("table.data#report-table .warning").toggle($("#warning_checkbox").is(":checked"));
$('.data_table#report-table').dataTable().fnDraw();
});
当检查具有ID的复选框时,它会显示/隐藏其具有类warning_checkbox
的行(实际上,tbody
元素)table.data#report-table
.warning
据我所见,'.data_table#report-table
页面上没有元素 - 所以我认为有些东西不起作用。但是 - 它(神奇地?)确实如此,即按预期重绘表格,保留其正确设置。但是,我确实在 Chrome 控制台中收到以下错误:
Uncaught TypeError: Cannot read property 'oFeatures' of null
我认为这可能是由于缺少元素(但是它仍然如何工作?)无论如何,我将代码重写为一个函数,因为我需要在其他地方重用它:
var checkbox_rows = function(checkbox_id, table_id, tbody_class) {
var checkbox = $('div.buttons input[id$='+checkbox_id+']');
var table = $('table.data[id$='+table_id+']');
checkbox.click(function() {
$('tbody[class$='+tbody_class+']', table).toggle(checkbox.is(':checked'));
table.fnDraw();
});
}
checkbox_rows('warning_checkbox', 'report-table', 'warning');
这也有效(对我来说更有意义) - 但现在我在 Chrome 控制台中遇到了一个不同的错误:
Uncaught TypeError: Object [object Object] has no method 'fnDraw'
所以我的问题是,我做错了什么?重绘 DataTable 的正确方法是什么?
谢谢