2

我尝试将 columFilter 与 sPlaceHolder 一起使用:“thead:after”

我使用:jquery 1.8.1 数据表 1.9.3 columnFilter 1.5.0

我的桌子是:

<table align="center" border="1" id="tatable">
            <thead>
            <tr>
                <th scope="col">Numero de la prise</th>
                <th scope="col">Description</th>
                <th scope="col">Piece</th>
                <th scope="col">Action</th>
            </tr>
            <tr>
                    <th></th>
                    <th></th>
                    <th></th>
                    <th></th>
                </tr>
            </thead>
            <tfoot>
                <tr>
                    <th></th>
                    <th></th>
                    <th></th>
                    <th></th>
                </tr>
            </tfoot>
            <tbody>
// a lot of data
</tbody>
</table>

我用于初始化的 jquery 代码是:

$(document).ready(function(){
$('#tatable').dataTable({
            "bLengthChange": false,
            "iDisplayLength":50    
}).columnFilter({
    sPlaceHolder: "thead:after",
    aoColumns :[
        {type: "text"},
        {type: "text"},
        {type: "text"},
        {type: "text"}
    ]
    }
);
});

此代码在标题上显示 2 行,输入在表格底部...为什么?

(jquery 插件链接) http://www.datatables.nethttp://jquery-datatables-column-filter.googlecode.com/svn/trunk/index.html

4

1 回答 1

2

我只是用谷歌搜索并了解了一些,但我没有遇到像你这样的过滤器,我已经看到了这个:head:before 所以你的不应该是: head:after

PS:我用的是“head”而不是“thead”

于 2012-09-13T15:38:56.877 回答