我有一个看起来像这样的表:
编辑:
<table id="results">
<thead>
<tr>
<th>ID</th>
<th>NAME</th>
<th>NUMBER</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="#" onclick="$('#user_1').toggle();">1</a></td>
<td>JOHN</td>
<td>311-123-4523</td>
</tr>
<tr id="user_1" class="hide">
<td colspan="3">
Some information about the user
</td>
</tr>
</tbody>
</table>
<script>
$(document).ready(function(){
$('#results').dataTable({
"sPaginationType": "bootstrap"
});
});
</script>
注意:单击 id 号,显示/隐藏详细信息行。
当 dataTable 尝试使用 colspan 呈现表时出现问题,我收到此错误
Uncaught TypeError: Cannot read property 'asSorting' of undefined
如果我删除详细信息行,数据表会呈现一切正常。
我想知道是否可以告诉 dataTable 忽略上述详细信息行。