我需要在左上側和右上側的「大小」的「過濾器」,但不工作:jQuery的數據表sDom爲了不工作
$(document).ready(function() {
jQuery('#example').dataTable({
"sDom": '<"top"fl>rt<"bottom"ip><"clear">'
});
});
爲什麼?
我需要在左上側和右上側的「大小」的「過濾器」,但不工作:jQuery的數據表sDom爲了不工作
$(document).ready(function() {
jQuery('#example').dataTable({
"sDom": '<"top"fl>rt<"bottom"ip><"clear">'
});
});
爲什麼?
SOLUTION
使用這兩個CSS規則爲目標的所有數據表:
.dataTables_wrapper .dataTables_filter {
float: left;
}
.dataTables_wrapper .dataTables_length {
float: right;
}
使用這兩個CSS規則來定位#example
數據表:
#example_wrapper .dataTables_filter {
float: left;
}
#example_wrapper .dataTables_length {
float: right;
}
DEMO
見this jsFiddle代碼和演示。
解決。坦克:https://jsfiddle.net/qvg8L5aa/1/ – Alisson
@Alisson,對不起,糾正了我的代碼錯誤,謝謝指出。 –
嗨,Alisson,你能解釋一下你的意思是「不工作」嗎? – pietro909
不顯示error.It工作正常。只是不按照我想要的順序。必須在結果數量之前出現搜索輸入。 – Alisson