我有一个带搜索选项的数据表。但我想用过滤器更改标签名称。我粘贴了浏览器控制台中的代码,但如何将标签名称从搜索更改为过滤?
<div class="dataTables_filter" id="Register_filter">
<label>Search: <input type="text">
</label>
</div>
答案 0 :(得分:3)
假设您正在使用Datatables jquery插件,您需要:
$('#example').dataTable( {
"language": {
"search": "Filter records:"
}
} );
具体来说,将语言部分添加到表格初始化中。