我需要左上角的“过滤器”和右上角的“尺寸”,但不能正常工作:
$(document).ready(function() {
jQuery('#example').dataTable({
"sDom": '<"top"fl>rt<"bottom"ip><"clear">'
});
} );
为什么?
答案 0 :(得分:0)
<强>解强>
使用这两个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;
}
<强>样本强>
请参阅this jsFiddle以获取代码和演示。