我试图在表之外有链接,我可以用它来过滤数据表中的单个列。基本上,链接将是一堆类别名称,在表中我将有一个包含类别名称的隐藏列。
在大多数情况下,这就是我想要做的。
<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>