jQuery表格插件datatables用法详解(3)

<table cellpadding="0" cellspacing="0"> <thead> <tr> <th> Rendering engine </th> <th> Browser </th> <th> Platform(s) </th> <th> Engine version </th> <th> CSS grade </th> </tr> </thead> <tbody> <tr> <td> Trident </td> <td> Internet Explorer 4.0 </td> <td> Win 95+ </td> <td> 4 </td> <td> X </td> </tr>

如果没有 thead 将会报错。

bPaginate: 是否分页,默认为 true,分页

iDisplayLength : 每页的行数,每页默认数量:10

sPaginationType: 分页样式,支持两种内置方式,two_button 和 full_numbers, 默认使用 two_button。

bLengthChange : 是否允许用户通过一个下拉列表来选择分页后每页的行数。行数为 10,25,50,100。这个设置需要 bPaginate 支持。默认为 true。

bFilter: 启用或禁止数据过滤,默认为 true。 注意,如果使用过滤功能,但是希望关闭默认的过滤输入框,应使用 sDom

bInfo: 允许或者禁止表信息的显示,默认为 true,显示信息。

最为简单的使用方式,就是零配置的方式。

/* * Example init */ $(document).ready(function(){ $('#example').dataTable(); });

以上就是关于jQuery表格插件datatables用法的详细介绍,希望对大家的学习有所帮助。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wgwfwg.html