我第一次使用数据表并被以下解释的问题所震惊。当我尝试包含垂直滚动时,列标题会丢失所有 itz 对齐,所有列宽都会减小,因此会得到标题行的长度是整个桌子的一半。
我注意到的另一件事是,在第 th 类样式中,宽度为 0px,任何人都可以理解为什么会这样吗?我已经包含的 js 部分,
$(document).ready(function() {
$.ajax({
type : "GET",
url :"",
dataType : "json",
success : function(data)
{
$('#customers').dataTable(
{
"aaData":data.response,
"aoColumns": [
{ "sTitle": "Rendering Engine", "bSortable": false},
{ "sTitle": "Broswers", "bSortable": false },
{ "sTitle": "Platform", "bSortable": false }
],
"sScrollY": "250px",
"iDisplayLength": 200,
"bFilter": false,
"bLengthChange": false,
"bAutoWidth": false
});
}
});
});
和html部分
<table id="customers"></table>
提前致谢 !