我想用jQuery DataTables插件创建一个表。我的表应该具有单独的列搜索功能,但是我的代码不起作用。我查看了this的示例:
var tableVol = $('#tableVolToDo');
tableVol
.DataTable({
"language": {
"url": "http://cdn.datatables.net/plug-ins/9dcbecd42ad/i18n/French.json"
},
"lengthMenu": [50, 100, 200]
})
.columns().every(function () { // Apply the search
var that = this;
$('input', this.footer()).on('keyup change', function () {
if (that.search() !== this.value) {
that
.search(this.value)
.draw();
}
});
});
// Setup - add a text input to each footer cell
$('#tableVolToDo tfoot th').each(function () {
var title = $(this).text();
$(this).html('<input type="text" placeholder="Search ' + title + '" />');
});