获得宽度:
var tableAutoWidth = $('.dataTable_wrapper').width();
if (tableAutoWidth < 1200) {
tableAutoWidth = 1200;
}
设置表格宽度:
$('#table').width(tableAutoWidth);
再将scrollX设为true即可
05-23 22:42