我正在尝试为我的每一列显示过滤器下拉列表。某些列正确显示唯一值。但是,我的过滤器下拉列表中有 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>错误截图:
1 回答
蝴蝶不菲
TA贡献1810条经验 获得超4个赞
根据您的建议,我通过将隐藏的输入字段替换为<td>. 下面是我的简单解决方案。
echo "<td class='prbk' data-id='".$row[3]."'>".$row[3]."%</td>";
echo "<td class='bpbk' data-id='".$row[4]."'>".$row[4]."%</td>";
echo "<td class='epbk' data-id='".$row[5]."'>".$row[5]."%</td>";
- 1 回答
- 0 关注
- 80 浏览
添加回答
举报
0/150
提交
取消