對于表格來說,當數(shù)據(jù)比較多的時候,我們無法一頁一頁的查找,這樣我們就可以進行篩選操作,這篇文章主要為大家詳細介紹了基于jquery實現(xiàn)表格內(nèi)容篩選功能的相關資料,具有一定的參考價值,感興趣的小伙伴們可以參考一下
當表格內(nèi)的數(shù)據(jù)較多時,我們無法一頁一頁的查找,這時可以通過一個搜索框來實現(xiàn)搜索。
對于這個搜素框,我們?yōu)榱烁玫捏w驗可以利用keyup事件實現(xiàn)在用戶輸入的時候就開始篩選,而不是填完以后點擊搜索按鈕再執(zhí)行。
效果圖:
實現(xiàn)代碼:
<html>
<head>
<meta charset="utf-8" />
<script src="jquery-1.3.2.min.js"></script>
<link href="css/style.css" rel="stylesheet" type="text/css" />
<script>
$(function () {
$("tr.parent").click(function () {
$(this)
.siblings('.child_'+this.id).toggle();
});
$("tr.parent").addClass("selected");
$("#searchbox").keyup(function () {
$("table tbody tr").hide()
.filter(":contains('"+($(this).val())+"')").show();//filter和contains共同來實現(xiàn)了這個功能。
}).keyup();
});
</script>
<title></title>
</head>
<body>
<label>篩選</label>
<input type="text" id="searchbox"/>
<table>
<thead>
<tr><td>姓名</td><td>性別</td><td>暫住地</td></tr>
</thead>
<tbody>
<tr class="parent" id="row_01"><td>前臺設計組</td></tr>
<tr class="child_row_01"><td>張山</td><td>男</td><td>湖北</td></tr>
<tr class="child_row_01"><td>李山</td><td>男</td><td>湖北</td></tr>
<tr class="child_row_01"><td>張山</td><td>男</td><td>湖北</td></tr>
<tr class="child_row_01"><td>張山</td><td>男</td><td>湖北</td></tr>
<tr class="parent" id="row_02"><td>前臺設計組</td></tr>
<tr class="child_row_02"><td>張山</td><td>男</td><td>湖北</td></tr>
<tr class="child_row_02"><td>張山</td><td>男</td><td>湖北</td></tr>
<tr class="child_row_02"><td>張山</td><td>男</td><td>湖北</td></tr>
<tr class="child_row_02"><td>張山</td><td>男</td><td>湖北</td></tr>
<tr class="parent" id="row_03"><td>前臺設計組</td></tr>
<tr class="child_row_03"><td>張山</td><td>男</td><td>湖北</td></tr>
<tr class="child_row_03"><td>張山</td><td>男</td><td>湖北</td></tr>
<tr class="child_row_03"><td>張山</td><td>男</td><td>湖北</td></tr>
<tr class="child_row_03"><td>張山</td><td>男</td><td>湖北</td></tr>
</tbody>
</table>
</body>
</html>
以上就是本文的全部內(nèi)容,希望對大家學習jquery程序設計有所幫助。