gpt4 book ai didi

javascript - 数据表中的多列过滤器( Bootstrap )

转载 作者:行者123 更新时间:2023-12-03 10:10:36 24 4
gpt4 key购买 nike

我正在为应用程序中的表使用 DataTables API。我有一个场景,我希望启用多个列以进行过滤。

我现在已经有了这个代码设置。但它只搜索Column2。即使我输入 Column1 的值,它也不会搜索。

    $('#btnFilter').click(function () {
table.fnFilter($('#Column1').val());
table.fnFilter($('#Column2').val());
});

最佳答案

我猜fnFilter也会接受iColumn参数

所以尝试这样使用

table.fnFilter($('#Column1').val(), 0);  //0 is the first column
table.fnFilter($('#Column2').val(), 1);

关于javascript - 数据表中的多列过滤器( Bootstrap ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30131068/

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