我正在尝试重新创建demo
我的jsfiddle是here
前端Javascript
$(document).ready(function() {
$('#example').DataTable({
responsive: {
details: {
type: 'column',
target: 'tr'
}
},
columnDefs: [{
className: 'control',
orderable: false,
targets: 0
}],
order: [1, 'asc']
});
});
HTML
<table id="example" class="display nowrap" width="100%">
<thead>
<tr>
<th></th>
<th>test</th>
<th>test</th>
<th>test</th>
<th>test</th>
<th>test</th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
<td>5</td>
</tr>
</tbody>
</table>
由于未知原因,细节行不会出现(最左侧列上的+/-符号也不会出现)
我做错了什么?
答案 0 :(得分:1)
你有两个问题:
查看更新后的JSfiddle。
Look at the used external resources to see the correct libraries to import.