个别列搜索不适用于DataTables

时间:2019-05-06 09:52:19

标签: javascript jquery datatables

我想用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 + '" />');
});

0 个答案:

没有答案