我正在尝试为我的每一列显示过滤器下拉列表。某些列正确显示唯一值。但是,我的过滤器下拉列表中有 3 个无法正确显示。在这 3 列中,我在其中包含了隐藏输入字段,这<td>是必要的,因为我使用 JS 来检查隐藏输入中的数据值是否在特定范围内。会<td>根据条件改变颜色。然而,这导致我的 3 个过滤器下拉菜单显示隐藏输入的值,这不是我所希望的。无论如何可以帮忙吗?下面是我的代码。
PHP代码:
<table id="pic_table" class="table" class="display">
<thead>
<tr>
<th class="filterhead"></th>
<th class="filterhead"></th>
<th class="filterhead"></th>
<th class="filterhead"></th>
<th class="filterhead"></th>
<th class="filterhead"></th>
<th class="filterhead"></th>
</tr>
<tr>
<th>Serial</th>
<th>Name</th>
<th>Project Reference</th>
<th>Basic Profile</th>
<th>Employment Permits</th>
<th>Last Updated</th>
<th>Status</th>
</tr>
</thead>
<tbody>
?>
</tbody>
</table>
错误截图:
蝴蝶不菲