我有一列,其中每一行都有“通过”、“失败”或“忽略”作为文本。我想做一个过滤器搜索,所以只有“失败”和“忽略”可见。但我不能在同一列中组合搜索字符串。“失败忽略”给出 0 个结果。
有什么建议么?
我使用 dataTables jQuery 插件。
$('.tablesorter-js').dataTables();
和 html
<table class="tablesorter-js">
<thead>
<th>first column</th>
<th>second column</th>
</thead>
<tbody>
<tr>
<td>result</td>
<td>passed</td>
</tr>
<tr><td>result</td>
<td>ignored</td>
</tr>
</tbody
</table>