我有以下表格的html代码:
<table id="employeeDetails" class="table table-bordered table-striped">
<thead>
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Country</th>
<th>Team</th>
</tr>
</thead>
</table>
以下是dataTable初始化的代码:
$('#employeeDetailsTable').dataTable({
"processing":true,
"ajax" : {
"url" : '/fetchSearchResults',
"type" : 'POST'
}
}
});
我在互联网上的许多地方读过如果使用colspan,则不提供数据表中的排序功能和搜索框。即使没有使用colspan,我也没有在我的数据表中获得这些功能。可能的原因是什么?