dataTables 使用方式 (draw:刷新当前页 reload: 重新加载页码为1)

$(document).ready(function(){
table= $('#user_table').DataTable({
"paging": true,
"ordering":false,//排序
"aLengthMenu": [10, 25, 50],//设置页码
"searching":false,
"serverSide": true,//必须存在
"ajax": {
"url": "/index.php/user/user_Index",
"data": function ( d ) {
var user_name = $('#user_name').val(); //名称
//添加额外的参数传给服务器
d.user_name = user_name;
}
},

//回调函数
"drawCallback": function( settings ) {
$('#user_table_length').css('float','left');
if($('#btn_add').length<=0){
$('<a id="btn_add" class="btn btn-primary" οnclick="btn_add()">新增用户</a>').insertBefore($('#user_table_length'));
}
}

});


})

 

<div class="ibox-content">
	<div class="form-group">
		<label for="food_name" class="sr-only">名称</label>
		<div class="col-sm-2" style="padding:0px;">
			<input type="text" placeholder="员工姓名" id="user_name" class="form-control">
		</div>
		<div class="col-sm-3">
			<button class="btn btn-primary" type="button" οnclick='search()' style="margin: 0;">
			查询</button>
		</div>
	</div>
</div>
<div class="ibox-content">											
	<table class="table table-striped table-bordered table-hover dataTables-example" width="100%"  id="user_table">
		<thead>
			<tr>
				<th width="11%">姓名</th>
				<th width="11%">工号</th>
				<th width="5%">性别</th>
				<th width="11%">手机</th>
				<th width="15%">Email</th>
				<th width="30%">部门/岗位</th>
				<th width="25%">操作</th>
			</tr>
		</thead>
		<tbody>
		</tbody>
	</table>
</div>

  

转载于:https://www.cnblogs.com/beipiaoxiaohuo/p/6251847.html

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值