1

我想提供thead数据表的搜索并在其中实现搜索......但它不起作用......

$("#listings_row thead input").keyup( function () {
    oTable.fnFilter( this.value, $(this).attr('id') );
} );

<thead style="background:none;border:none;" id="searchbox">
    <tr class="search_box">
        <th><input type="text" style="height:16px;" name="search_engine" value="Search engines"   class="search_init" id="1" /></th>
    </tr>
</thead>

http://jsfiddle.net/methew/u9654/3/

只有这一行不能正常工作...oTable.fnFilter(this.value, $(this).attr('id'));

4

1 回答 1

4

注意id你的 s<input它从1开始,而它应该从5开始

您正在使用 的值对id列进行排序...因此,由于您的 id 从 1 开始,因此您将过滤器应用于错误的列

这是一个 jsfiddle - 快速而肮脏的工作版本

于 2013-03-04T08:24:56.527 回答