Jquery 검색 필터 테이블 행 예
그럼 jquery 필터를 이용한 데이터 검색 방법, jquery 필터를 이용한 데이터 검색 방법, jquery를 이용한 테이블 행 필터링, jquery 검색 필터 테이블 행 예제, jquery를 이용한 테이블 행 검색, jquery 검색 테이블 행에 대해 알아보도록 하겠습니다.
Example: Jquery Search Filter Table Rows Example
여기에서는 테이블을 만들고 검색 상자를 추가합니다.
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<style>
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
</style>
</head>
<body>
<h2>Jquery Search Filter Table Rows Example- Techsolutionstuff</h2>
<input id="myInput" type="text" placeholder="Search Here..">
<br><br>
<table>
<thead>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Email</th>
</tr>
</thead>
<tbody id="myTable">
<tr>
<td>Carry</td>
<td>james</td>
<td>[email protected]</td>
</tr>
<tr>
<td>Jery</td>
<td>joe</td>
<td>[email protected]</td>
</tr>
<tr>
<td>Demo</td>
<td>roof</td>
<td>[email protected]</td>
</tr>
<tr>
<td>Jeff</td>
<td>befos</td>
<td>[email protected]</td>
</tr>
</tbody>
</table>
</body>
<script>
$(document).ready(function(){
$("#myInput").on("keyup", function() {
var value = $(this).val().toLowerCase();
$("#myTable tr").filter(function() {
$(this).toggle($(this).text().toLowerCase().indexOf(value) > -1)
});
});
});
</script>
</html>
당신은 또한 좋아할 수 있습니다:
Reference
이 문제에 관하여(Jquery 검색 필터 테이블 행 예), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/techsolutionstuff/jquery-search-filter-table-rows-example-14j2텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)