gpt4 book ai didi

javascript - Datatable.js 过滤问题

转载 作者:行者123 更新时间:2023-11-28 08:57:30 24 4
gpt4 key购买 nike

我在 asp gridview 上使用 datatable.js。除了柱过滤器外,一切都工作正常。当我仅使用字母 M 进行过滤时,由于 &,我的表格在结果中显示 &。我尝试寻找答案,但没有成功。如何执行过滤并忽略列中的 &

最佳答案

在进行了额外的研究后,我找到了解决问题的有效方法。

var stripReserved = function (a) {
return a.replace('&', "&");
}



$("#someTable").dataTable({
"aoColumns": [

'mData': function(source, type, val){
if (type === 'set') {
source.value = val;
source.value_display = val;
source.value_filter = val=="" ? "" : stripReserved(val);
return;
}
else if (type === 'display') {
return source.value_display;
}
else if (type === 'filter') {
return source.value_filter;
}

return source.value;
}]
});

我在以下链接中找到了解决方案,并对其进行了调整以解决我的问题。 http://questiontrack.com/how-to-search-only-text-in-jquery-datatables-1107212.html

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

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