即使给出内联宽度,宽度也会在数据表中动态传递。
我可以使用内联宽度控制动态宽度
答案 0 :(得分:1)
您可以将!important
添加到内联样式,但只需将其应用于th
元素,然后同一列中的每个<td>
都应继承该宽度。< / p>
e.g。
<tr>
<th style="width: 100% !important;">Heading</th>
</tr>
您还应该能够使用正确的初始化选项将其关闭:
$('#example').dataTable({
"autoWidth": false
});