我从jsfiddle那里获得了代码,它可以正常工作,但是当我尝试嵌入我的代码时,搜索框没有出现
<link href="http://cdn.datatables.net/1.10.0/css/jquery.dataTables.css" />
<script type="text/javascript" href="https://cdn.datatables.net/1.10.9/js/jquery.dataTables.js"></script>
<script>
var table = $('#example').DataTable({
})
$('.dataTables_filter input').unbind().bind('keyup', function() {
/*var colIndex = document.querySelector('#select').selectedIndex;*/
table.column(1).search( this.value ).draw();
});
</script>