2

我试图在表之外有链接,我可以用它来过滤数据表中的单个列。基本上,链接将是一堆类别名称,在表中我将有一个包含类别名称的隐藏列。

在大多数情况下,这就是我想要做的。

<ul id="category-filter">
   <li><a href="#">Category 1</a></li>
   <li><a href="#">Category 2</a></li>
</ul>

<table cellpadding="0" cellspacing="0" border="0" id="program-table">
                    <thead>
                        <tr>
                            <th>Course Prefix</th>
                            <th>Program</th>
                            <th>Degree(s)</th>
                            <th>Certificate(s)</th>
                            <th>Sample Plan</th>
                            <th>Category</th><!-- Hidden Column -->
                        </tr>
                    </thead>
                    <tbody>...</tbody>
</table>
4

1 回答 1

2

查看 fnFilter ( http://www.datatables.net/api#fnFilter )。第一个参数是要搜索的内容,第二个参数是您要定位的列。:

$(document).ready(function() {
  var oTable = $('#example').dataTable();

  // Sometime later - filter...
  oTable.fnFilter( 'test string', 5 );
} );
于 2013-08-14T22:14:37.393 回答