我有一个包含frezzed列的DataTable。现在我还将搜索输入类型文本作为页脚放置。现在我在keyup上有这个脚本,它在.every函数下,但它没有启动。有人可以帮忙吗?
<script type="text/javascript">
$(document).ready(function() {
$('#example tfoot th').each( function () {
var title = $('#example thead th').eq( $(this).index() ).text();
$(this).html( '<input type="text" placeholder="'+title+'" />' );
} );
var table = $('#example').DataTable({
setTimeout: "50",
scrollY: "350px",
scrollX: true,
scrollCollapse: true,
paging: false,
heightMatch: "auto",
columnFilter: true,
fixedColumns: {
leftColumns: 2
},
});
table.columns().every( function () {
var that = this;
$( 'input', this.footer() ).on( 'keyup', function () {
alert('NAGIBA');
/*that
.search( this.value )
.draw();*/
} );
} );
});
</script>