数据表中的select2值搜索

时间:2019-06-09 09:03:18

标签: jquery datatable

我正在尝试使用数据表搜索在datatable内部的select2中搜索值。我表中的所有td单元格均为select2。下面的代码:

$(document).ready( function () {
$('#datatable')
.addClass( 'nowrap' )
.dataTable( {
    responsive: true,
    columnDefs: [
        { targets: [-1, -3], className: 'dt-body-right' }
    ],
    drawCallback: function() {
        $('.dt-select2').select2();
    }
});
$('.dataTables_filter input[type="search"]').attr('placeholder','Search in this page ....').css({'display':'inline-block'});
$('.dataTables_filter input[type="search"]').focus();

});

0 个答案:

没有答案