gpt4 book ai didi

javascript - JQuery-DataTables-ColumnFilter 过滤问题

转载 作者:搜寻专家 更新时间:2023-11-01 04:31:03 25 4
gpt4 key购买 nike

我正在使用 JQuery-DataTables-ColumnFilter 插件。我有两个表,当我尝试过滤第一个表上的数据时,它正在另一个表(#example1)中搜索而不是( #示例 enter image description here )

$(document).ready(function(){
$('#example').dataTable()
.columnFilter({
aoColumns: [ {type: "text"},
{ type: "text" },
{ type: "text" },
{ type: "number" },
{type: "text"},
{type: "text"},
{type: "text"},
{type: "text"},
{type: "text"},
{type: "text"},
{ type: "select", values: [ 'A', 'C', 'U', 'X'] }
]

});
$('#example1').dataTable()
.columnFilter({
aoColumns: [ {type: "text"},
{ type: "text" },
{ type: "text" },
{ type: "number" },
{type: "text"},
{type: "text"},
{type: "text"},
{type: "text"},
{type: "text"},
{type: "text"},
{ type: "select", values: [ 'A', 'C', 'U', 'X'] }
]

});
});

最佳答案

多于一张表完全没有问题。

确保 ID 表和函数调用中的 ID 相同。

HTML

<table id="example" cellpadding="0" cellspacing="0" border="0" class="display"  style="width:980px">
...
</table>
<table id="example1" cellpadding="0" cellspacing="0" border="0" class="display" style="width:980px">
...
</table>

查询

$(document).ready(function(){
$('#example').dataTable()
.columnFilter({
aoColumns: [ {type: "text"},
{ type: "text" },
{ type: "text" },
{ type: "number" },
{type: "text"},
{type: "text"},
{type: "text"},
{type: "text"},
{type: "text"},
{type: "text"},
{ type: "select", values: [ 'A', 'C', 'U', 'X'] }
]

});
$('#example1').dataTable()
.columnFilter({
aoColumns: [ {type: "text"},
{ type: "text" },
{ type: "text" },
{ type: "number" },
{type: "text"},
{type: "text"},
{type: "text"},
{type: "text"},
{type: "text"},
{type: "text"},
{ type: "select", values: [ 'A', 'C', 'U', 'X'] }
]

});
});

关于javascript - JQuery-DataTables-ColumnFilter 过滤问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30394568/

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