参数详解连接
headerCallbackOption
一个标准的表格分为thead,tbody和tfoot,一般我们可能只使用了thead和tbody,在开发过程中偶尔也会在表头做一些特殊处理,DataTables 提供了表头的回调处理 基本语法:
1
2
3
4
5
6
$('#example').dataTable( {
"headerCallback": function( thead, data, start, end, display ) {
//可以分别打印 thead, data, start, end, display 看看究竟是什么
$(thead).find('th').eq(0).html( '显示 '+(end-start)+' 条记录' );
}
} );