option headerCallback 表头回调函数

DataTables中文网 29 August 2016

Tags: 不定时一讲


参数详解连接 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)+' 条记录' );
  }
} );

如果大家也有好的点子和建议,欢迎给我发邮件 thxopen@datatables.club告诉我


百度站内搜索

Google站内搜索

赞助我们

赞助我们

您的支持,将是我们前进的最大动力……