2 回答
TA贡献1824条经验 获得超6个赞
我的代码中有这个错误;当已经初始化所选节点的DataTable实例时,通过将选项传递给Dataatables构造函数对象来触发。你应该使用像:
$('#example').dataTable( {
paging: false} );
在您的代码中只有 1 次。
TA贡献2037条经验 获得超6个赞
function show_categories(){
$.ajax({
type : 'ajax',
url: base_url + 'Admin/Categories/fetch_categories',
async : true,
dataType : 'json',
success : function(data){
var html = '';
var i;
for (i = 0; i < data.length; i++) {
html += '<tr>' +
'<td>' + data[i].category + '</td>' +
'<td style="width:80px;">' +
'<button type="button" class="btn btn-xs btn-info" data-category_id="' + data[i].category +'"><em class="fas fa-edit"></em></button> '+
'<button type="button" class="btn btn-xs btn-danger" data-category_id="' + data[i].category +'"><em class="fas fa-trash"></em></button>'+
'</td>' +
'</tr>';
}
$('#category_showData').html(html);
}
});
}
<table id="category_dataTables" class="table table-bordered table-sm table-hover datatable dt-responsive nowrap">
<thead>
<tr>
<th>Category</th>
<th>Action</th>
</tr>
</thead>
<tbody id="category_showData">
</tbody>
</table>
- 2 回答
- 0 关注
- 263 浏览
添加回答
举报