gpt4 book ai didi

jquery - 数据表搜索选项

转载 作者:行者123 更新时间:2023-12-01 07:15:27 26 4
gpt4 key购买 nike

我正在使用数据表作为表。我想仅根据名称列进行搜索,但默认情况下它会根据所有列进行搜索。我想仅根据名称进行搜索,任何帮助都值得赞赏。 enter image description here

Js代码

$('#table-filter').dataTable({
"bDestroy": true,
"bPaginate": true,
"bProcessing": false,
"bStateSave": false,
"aLengthMenu": [[5, 10, 20, 50, 100 , -1], [5, 10, 20, 50, 100, "All"]],
"iDisplayLength" : 5,
"sPaginationType": "full_numbers",

"aoColumnDefs": [
{ 'bSortable': false, 'aTargets': [ 0,1,7,8 ] }
],
"oLanguage": {
"sUrl": baseUrl+"/media/language/dt/"+lang_code+".txt",
}
})

最佳答案

试试这个,希望对您有帮助:

$('#example').dataTable( {
"aoColumnDefs": [
{ "bSearchable": true, "aTargets": [ 0 ] },
{ "bSearchable": false, "aTargets": [ 1] },
{ "bSearchable": false, "aTargets": [ 2] },
{ "bSearchable": false, "aTargets": [ 3] }
] } );

<强> Example

或者

$('#example').dataTable( {
"aoColumnDefs": [
{ "bSearchable": false, "aTargets": [ 1,2,3,4 ] }

] } );

<强> Example

这里是API Documentation for columns

关于jquery - 数据表搜索选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19395484/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com