如何自动调整数据表的列宽

时间:2014-05-07 07:39:50

标签: css datatables

我已经通过互联网搜索了这个问题,我也使用了他们的例子,但它对我的不起作用。我有没有配置设置的数据表,我想要实现的是我希望根据列上的内容自动调整列。

这是我的代码。

    <script type="text/javascript" language="javascript" class="init">

        $(document).ready(function() {
            $('#example').dataTable(
            "bAutoWidth":false
            );
        } );

    </script>

我也尝试使用表进行调整,但它没有用。

<table id="example" class="display" cellspacing="0" width="100%">

1 个答案:

答案 0 :(得分:3)

您是否在表格单元width:auto;中尝试了此操作?