我尝试将 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.net和 http://jquery-datatables-column-filter.googlecode.com/svn/trunk/index.html