jquery插件DataTable的使用实例

                        jquery插件DataTable的使用实例

概念:中文文档地址:http://www.datatables.club/manual/

 

 

jquery插件DataTable的使用实例_第1张图片

前端代码




    












    
        
最小id:
最大id:
ID 城市名 操作

 

后太代码

set_charset("utf8");
$arr=[];
if ($result = mysqli_query($link, 'SELECT city_id,city_name FROM ecm_city WHERE city_id >'.$_POST['min_id'].' AND city_id < '.$_POST['max_id'].' LIMIT '.$_POST['start'].','.$_POST['length'].'')) {
    /* Fetch the results of the query 返回查询的结果 */
    while( $row = mysqli_fetch_assoc($result) ){
       array_push($arr, $row);
    }
    /* Destroy the result set and free the memory used for it 结束查询释放内存 */
    mysqli_free_result($result);
}
mysqli_close($link);
$num = count($arr);
$data_arr['draw']=$_POST['draw'];//前端传过来的
$data_arr['recordsTotal']=$num;//搜索后的条数
$data_arr['recordsFiltered']=443;//总条数
$data_arr['data']=$arr;//数据
$data=json_encode($data_arr);
echo $data;

 

 

你可能感兴趣的:(JavaScript学习篇)