0
我想在一個表上創建多個搜索框,從mysql數據庫填充。這是一個很好的例子:(https://datatables.net/examples/api/multi_filter.html),但表格是在html中生成的。mysql數據庫填充表中的多個搜索選項
我也想實現ajax並將超時設置爲1000s。 在這一刻,我可以看到表中的罰款和1搜索選項的作品,但如何添加更多?
這裏是我到目前爲止有:
<link rel="stylesheet" type="text/css" href="//cdn.datatables.net/1.10.12/css/jquery.dataTables.css">
<script src="https://code.jquery.com/jquery-1.12.4.js" integrity="sha256-Qw82+bXyGq6MydymqBxNPYTaUXXq7c8v3CwiYwLLNXU=" crossorigin="anonymous"></script>
<script src="https://cdn.datatables.net/1.10.13/js/jquery.dataTables.min.js"></script>
<script>
$(document).ready(function() {
// Setup - add a text input to each footer cell
$('#mainResults tfoot th').each(function() {
var title = $(this).text();
$(this).html('<input type="text" placeholder="Search '+denominacija+'" />, <input type="text" placeholder="Search '+stava+'" />');
});
// DataTable
setTimeout(function() {
$('#mainResults').load('branje_stevcev2.php');
setTimeout(function(){
var table = $('#mainResults').DataTable();
},1000);
}, 1000);
// Apply the search
table.columns().every(function() {
var that = this;
$('input', this.footer()).on('keyup change', function() {
if (that.search() !== this.value) {
that
.search(this.value)
.draw();
}
});
});
});
</script>
<table border='1' id="mainResults">
<td>
Nalagam ...</td>
</table>