如何使用jquery在html表中禁用搜索?

时间:2016-07-17 18:46:39

标签: jquery html

html table

我想只使用第一列进行搜索。我使用下面的代码,但它没有锻炼。

"aoColumnDefs": [
      { "bSearchable": true, "aTargets": [ 0 ] },
      { "bSearchable": false, "aTargets": [ 1] },
      { "bSearchable": false, "aTargets": [ 2] },
      { "bSearchable": false, "aTargets": [ 3] }
    ] 

1 个答案:

答案 0 :(得分:0)

您使用DataTables.js吗?

如果确实如此,您可以定义可搜索的列,如下所示:

$(document).ready(function() {
    $('#example').DataTable( {
        "columnDefs": [
            {
                "targets": [ 2 ],
                "searchable": false
            },
            {
                "targets": [ 3 ],
                "searchable": true
            }
        ]
    } );
} );

我建议你阅读the manual of DataTables.js