我是JS的初学者。我有一个包含来自我的数据库的大约100条记录的表,但随后,它已在页面上分页为10。当我使用我的查询进行搜索时,它不会搜索整个表格,而是搜索当前页面。
如何才能让我的查询搜索整个表格,而不仅仅是当前页面?
<script>
function myFunction() {
// Declare variables
var input, filter, table, tr, td, i;
input = document.getElementById("myInput");
filter = input.value.toUpperCase();
table = document.getElementById("table");
tr = table.getElementsByTagName("tr");
// Loop through all table rows, and hide those who don't match the search query
for (i = 0; i < tr.length; i++) {
td = tr[i].getElementsByTagName("td")[1];
if (td) {
if (td.innerHTML.toUpperCase().indexOf(filter) > -1) {
tr[i].style.display = "";
} else {
tr[i].style.display = "none";
}
}
}
}
</script>
答案 0 :(得分:1)
如果你使用jQuery DataTables,它可能会让你的任务变得更容易。否则,我建议您尝试使用tr[i].style.display = "";
和tr[i].hide()
替换tr[i].show()
。