我正在使用jquery数据表1.10,并希望为每列添加搜索,并且所有列均由数据表本身使用通过配置的columns属性来创建。我需要在标题后面的新tr中为每列添加一个搜索框。
<table class="table table-striped table-bordered" id="buildings">
</table>
$('#buildings').dataTable({
"processing": true,
"serverSide": true,
"searching": false,
"ajax": "url.php",
"columns": [
{"data": "name", 'title': 'Name'},
{"data": "street", 'title': 'Street'},
{"data": "city", 'title': 'City'},
],
initComplete: function (settings, json) {
this.row.add([
'add search box','add search box','add search box'
]).draw();
}
});
});