如何隐藏下表,直到我从搜索栏搜索内容?我希望在使用搜索栏筛选该表之前不显示该表
<html>
<div class="students">
Students
<input type="text" id="studsearch" onkeyup="StudentSearch()" placeholder="Search Student Number">
<body>
<table border ="1" cellpadding="0" id="studtable">
<tr>
<th>Student No.</th>
<th>Full Name</th>
</tr>
<tr id="stud1">
<td>1</td>
<td>John</td>
</tr>
<tr id="stud2">
<td>2</td>
<td>Mike</td>
</tr>
</table>
</body>
</div>
<script>
function StudentSearch() {
var input, filter, table, tr, td, i, txtValue;
input = document.getElementById("studsearch");
filter = input.value.toUpperCase();
table = document.getElementById("studtable");
tr = table.getElementsByTagName("tr");
for (i = 0; i < tr.length; i++) {
td = tr[i].getElementsByTagName("td")[0];
if (td) {
txtValue = td.textContent || td.innerText;
if (txtValue.toUpperCase().indexOf(filter) > -1) {
tr[i].style.display = "";
foundHit = true;
} else {
tr[i].style.display = "none";
}
}
}
}
</script>
</html>
我希望在搜索之前将表隐藏起来
2条答案
按热度按时间ekqde3dh1#
添加css样式以隐藏表
假设有过滤按钮/搜索按钮
向筛选按钮添加事件侦听器,单击该按钮时将显示表并筛选其内容,
q9rjltbz2#
要在初始时隐藏表格并仅在有搜索结果时显示它,您可以向table元素添加CSS样式,将其初始显示设置为"none"。然后,修改JavaScript代码,使其仅在至少有一个搜索结果时显示表格。
你可以试试这个:
使用这段代码,当页面第一次加载时,表将被隐藏。只有当至少有一个搜索结果时,表才会显示。