我正在使用datatable 1.9。我在搜索时面临问题。我的表看起来像这样
<'表> <' TD> <' div><' span class =" inlineEditCategory" >类别<' /跨度><' / DIV> <' / TD> <' /表>
因此,如果我搜索像div这样的单词,则会显示所有行,而不是。我发现正在搜索td之间的内容。他们是否只能搜索文本部分。
答案 0 :(得分:1)
您可以使用html filtering plugin。
包含datatables.js主脚本后包含js文件。
在数据表初始化中使用这样的插件:
$('#example').dataTable({
"columnDefs": [
{ type: "html", target: 0 }
]
});
您也可以使用aoColumn选项执行此操作:
$('#example').dataTable( {
"aoColumns": [
{ "sType": "html" },
....
]
} );
有关详细信息,请参阅documentation