このクライアント側を実行する場合は、次の手順に従ってください:
jQuery 参照をページに追加します。テキスト入力を追加して txt_Search
を呼び出します .
次に、このスクリプトを使用します:
$(document).ready(function () { $('#txt_Search').keyup(function () { searchTable($(this).val()); }); function searchTable(inputVal) { var table = $('#GridView1'); table.find('tr').each(function (index, row) { var allCells = $(row).find('td'); if (allCells.length > 0) { var found = false; allCells.each( function (index, td) { var regExp = new RegExp(inputVal, 'i'); if (regExp.test($(td).text())) { found = true; return false; }}); if (found == true) $(row).show(); else $(row).hide(); } }); } });
プレ>