0

你能帮忙吗?

   <table id="myTable">
                    <thead>
                        <tr/>
                    </thead>
<tbody/>
                </table> 



    "bJQueryUI": false,
    "bProcessing": false,
    "bServerSide": true,
    "bFilter": true,
    "bAutoWidth": false,
    "bDeferRender": true,
    "bScrollCollapse": true,
    "oScroller": {
        serverWait: true
    },
    "bInfo": true,
    "aaSorting": [
        [1, 'asc']
    ], // Default first column sort
    "sDom": 'tiS',

表格在滚动时不断调整大小

4

1 回答 1

0

我认为你的表结构是根据数据表计算的,尝试创建一个这样的表:

<table class="display" id="example">
    <thead>
        <tr>
            <th>Title 1</th>
            <th>Title 2</th>
            <th>Title 3</th>
        </tr>
    </thead>
    <tbody>
         <tr>
            <td>Res 1</td>
            <td>Res 2</td>
            <td>Res 3</td>
         </tr>
    </tbody>
</table>

如果你愿意,你不能设置一个 <tfoot>

试试这个,如果可行,设置$("#example").dataTable({...});.

于 2012-07-05T18:57:21.550 回答