我尝试使用jquery删除datatable中的1和2输入文本框,但是当我删除foreach时,则没有任何数据显示
this is my html table code look like this
<table id="vendor" class="table table-bordered table-striped">
<thead>
<tr>
<th>Name</th>
<th>Mobile No</th>
<th>Profession</th>
<th>Updated_at</th>
<th>id</th>
<th>Action</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Name</th>
<th>Mobile No</th>
<th>Profession</th>
<th>Updated_at</th>
<th>id</th>
<th>Action</th>
</tr>
</tfoot>
</table>
这是我的jquery数据表代码,在此代码中,当我删除foreach时,则没有任何数据显示
$(document).ready(function () {
var datatableInstance = $('#vendor').DataTable({
"paging": true,
"pageLength": 10,
"searching":true,
"processing": true,
"serverSide": true,
$('#vendor tfoot th').each(function () {
var title = $('#vendor thead th').eq($(this).index()).text();
$(this).html('<input type="text" class="form-control" placeholder="Search ' + title + '" />');
});
datatableInstance.columns().every(function () {
var dataTableColumn = this;
$(this.footer()).find('input').on('keyup change', function () {
dataTableColumn.search(this.value).draw();
});
});
});
我在数据表中有这种类型的设计 姓名和移动电话“无”列在“无法输入”文本框中,仅出现在“专业”列中