我該如何才能過濾滿意而已。
香港專業教育學院嘗試這個劇本,但它不工作
<script>
$(document).ready(function() {
tbl = $('#example').dataTable();
tbl.fnFilter("^" + filter_value + "$");
});
$(document).ready(function() {
$('#example').dataTable({
"oSearch": {"bSmart": false}
});
})
oTable.fnFilter("^"+TERM+"$", COLUMN , true); //Term, Column #, RegExp Filter
oSettings.aoPreSearchCols[ iCol ].sSearch = "^\\s*"+'1'+"\\s*$";
oSettings.aoPreSearchCols[ iCol ].bRegex = false;
oSettings.aoPreSearchCols[ iCol ].bSmart= false;
</script>
您使用哪種版本的DataTable? –