jquery-datatable 插件

网址:http://datatables.club/

产品型号 授权数量 注册时间
Row 1 Data 1 Row 1 Data 2 Row 1 Data 2 Row 1 Data 2
Row 1 Data 1 Row 1 Data 2 Row 1 Data 2 Row 1 Data 2
Row 1 Data 1 Row 1 Data 2 Row 1 Data 2 Row 1 Data 2
//样式设置
$("#resultTable").dataTable( {  
    "aoColumnDefs": [ { "bSortable": false, "aTargets": [ 7 ] }],
    "order": [[ 6, "desc" ]],
    //"scrollY": scrollY,
    "fnDrawCallback": function(){
        if(Version=="1"){
            $('#versionTwoDisp').hide();
            $('.versionTd').parent().hide();
        }else{
            $('#versionTwoDisp').show();
            $('.versionTd').parent().show();
        }
    }, 
}); 
//api自定义添加内容
var t = $('#resultTable').dataTable().api();
t.rows().remove();
for(var i=0;i';//  
    t.row.add( [
        jsonobj.result[i][0],
        jsonobj.result[i][1],
        col3Value,
        jsonobj.result[i][3],
        jsonobj.result[i][4],
        col7Value,
        col5Value,
        col6Value
    ] );
} 
t.draw(false);

你可能感兴趣的:(jquery-datatable 插件)