まずJavaScriptのエキスパートではないので、答えは簡単かもしれませんが、現在はこの(https://www.w3schools.com/howto/howto_js_filter_table.asp)チュートリアルを使用してテーブルをフィルタリングしていますが、 1つの列だけを検索することができます(この例では名前または国のみ)。しかし、同時に両方の列を検索する必要があります。JavaScriptを使用してテーブルをフィルタリング/検索する
このコードで変更する必要があるのは何ですか?
function myFunction() {
// Declare variables
var input, filter, table, tr, td, i;
input = document.getElementById("myInput");
filter = input.value.toUpperCase();
table = document.getElementById("myTable");
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")[0];
if (td) {
if (td.innerHTML.toUpperCase().indexOf(filter) > -1) {
tr[i].style.display = "";
} else {
tr[i].style.display = "none";
}
}
}
}