我想更改数据表可滚动区域的大小。

$('#example').dataTable({"sScrollY": 100});
//some stuff..
$('#example').dataTable({"sScrollY":101}); //wrong: cannot reinitialize

最佳答案

$('.dataTables_scrollBody').css('height', 400);

09-13 02:30