現在、最初の列のテーブルを検索して行ごとに並べ替えるJQueryコードがあります。ただし、検索から除外したい追加のメモ情報が含まれているため、検索はシステム名情報にのみ制限されます。テーブル検索へのJQueryの変更
SearchFilter.customfilter = function(searchInput, table) {
var input, filter, table, tr, td, i;
input = document.getElementById(searchInput);
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")[0];
if (td) {
if (td.innerText.toUpperCase().indexOf(filter) > -1) {
tr[i].style.display = "";
} else {
tr[i].style.display = "none";
}
}
}
}
これが検索されているHTMLテーブルのサンプル行です:
<tr>
<td><a href="site.html">System Name</a>
<p class="tablenote"><small>Note: System note information. </small></p>
</td>
<td>N/A</td>
<td>N/A</td>
</tr>
はそのtablenoteクラスを除くなどの検索からtablenote情報を除外するためにjqueryのコードを変更するための良い方法はあります小さなテキストを除外するか?
だから....アンカータグだけの内容を見てください。あなたは「特定の子要素の中にあるものを除いてすべてのinnertextを得る」と言うことはできません。その結果を得るには、代わりにすべての子ノードを反復し、不要なものを除外し、残りの部分を検索する必要があります。各セルについて。各行について。 –
アンカータグの内容はどうすれば確認できますか?あなたはいくつかの特定のコードを提案できますか? –
番号。それはちょうどドムトラバーサルです。 –