gpt4 book ai didi

jquery - 在 asp.net gridview 中重新绑定(bind) jQuery 数据表

转载 作者:行者123 更新时间:2023-11-28 10:19:14 25 4
gpt4 key购买 nike

我正在使用 jQuery 数据表来绑定(bind)一个 asp.net gridview,我必须隐藏和显示一些行。

它工作完美,但是当我从数据表中隐藏一些行时,数据表分页没有更新,所以我必须重新绑定(bind) jquery 数据表。

当我再次调用数据表函数时,它显示了这个错误:-

enter image description here

我正在使用这段代码来显示和隐藏..然后重新绑定(bind)数据表

$('table.dataTable tbody tr').each(function () {
var name = $(this).find('.name').html();
if (name == str) {
$(this).show();
$('.Flight_class').dataTable({
"aaSorting": [[1, "asc"]],
"sPaginationType": "full_numbers",
"bJQueryUI": false,
"bAutoWidth": false,
"bLengthChange": false
});
}
else {
$(this).hide();
}
});

最佳答案

我不认为重新绑定(bind)datatable是不可能的。重新绑定(bind)前解绑:

$('.Flight_class').unbind().dataTable({...});

关于jquery - 在 asp.net gridview 中重新绑定(bind) jQuery 数据表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13946914/

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