我使用Datatables构建一个表并使其可搜索。
$('#table').DataTable({
"paging" : true,
"info" : true,
"bFilter" : true,
});
我有一个列,其中包含值" security"和"非安全"。如果我搜索"安全" ......它会将原因与两者相匹配。
我的问题是:如何使用或如何配置数据表,搜索将过滤掉"非安全性"搜索"安全"?
时的项目答案 0 :(得分:0)
DataTable插件默认设置" smart"选项为true。将其设置为false。
$('#table').DataTable({
"paging" : true,
"info" : true,
"search": {
"smart": false
}
});
更新
我认为它已在这里得到解答。 How to get exact match using fnFilter?