我想向表的State列添加搜索和过滤功能,最好使用jquery。
这是表格的代码。
<div id="container">
<div class="table-responsive">
<p>
Search: <input type="text" id="table-filter" value="">
</p>
<table id ="table" class="table table-striped">
<thead>
<tr>
<th> First Name </th>
<th> Last Name </th>
<th> State </th>
<th> Date of Birth</th>
<th> Action </th>
</tr>
</thead>
<?php
if (count($report) === 0) {
echo "<tr>No Reports</tr>";
} else {
for ($i = 0; $i < count($report); $i++) {
echo
"<tr>
<td>{$report[$i]['First_Name']}</td>
<td>{$report[$i]['Last_Name']}</td>
<td>{$report[$i]['State']}</td>
<td>{$report[$i]['Date_of_Birth']}</td>
<td><a class=btn href='read.php?id=".$read['Id']."'>Read</a></td>
</tr>";
}
}
?>
</table>
</div>
</div>
main.js
$(document).ready(function(){
$("#table-filter").on("keyup", function() {
var value = $(this).val().toLowerCase();
$("#table").filter(function() {
$(this).toggle($(this).text().toLowerCase().indexOf(value) > -1)
});
});
});
我对jquery非常陌生。任何帮助将不胜感激。
答案 0 :(得分:0)
尝试本教程和示例:jQuery Filters
如果您不了解,请告诉我来帮助您!
答案 1 :(得分:0)
如果要在特定列中搜索,请尝试以下操作:https://www.w3schools.com/howto/howto_js_filter_table.asp
对于“状态”列,您必须更改以下行:td = tr[i].getElementsByTagName("td")[0];
到td = tr[i].getElementsByTagName("td")[2];