Jquery 組 tbale表格篩選

來源:互聯網
上載者:User

標籤:contains   input   ide   tab   style   html   lan   htm   分享   

 


<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="utf-8">
<title></title>
<style>

table{
border:1px solid #000;
width: 400px;
text-align: center;
border-collapse: collapse;
}
thead tr{
border: 1px solid #000;
}
</style>
</head>
<body>
<table>
<thead>
<tr>
<th colspan="3">篩選:<input id="filterName" type="text"/></th>
</tr>
</thead>
<tbody>
<tr class="child_row_01"><td>張山1</td><td>男</td><td>浙江寧波</td></tr>
<tr class="child_row_01"><td>王山2</td><td>男</td><td>浙江寧波</td></tr>
<tr class="child_row_02"><td>李山3</td><td>男</td><td>浙江餘杭</td></tr>
<tr class="child_row_02"><td>張山4</td><td>男</td><td>浙江寧波</td></tr>
<tr class="child_row_03"><td>李山5</td><td>男</td><td>浙江寧波</td></tr>
<tr class="child_row_03"><td>張山6</td><td>男</td><td>浙江寧波</td></tr>
</tbody>
</table>
</body>
<script src="js/jquery-1.11.3.js"></script>
<script>
$(function(){
$("#filterName").keyup(function(){
$("table tbody tr").hide()
.filter(`:contains(‘${$(this).val()}‘)`).show();
});
});

</script>
</html>

Jquery 組 tbale表格篩選

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.