0
ボタンを押したときにドロップダウンリストから選択した値でフィルタリングするHTMLテーブルがあります。ボタン付きjQueryテーブル列フィルタ
私はjQueryセレクタ "#table_id td。[td class]:contains"と "#table_id td。[td class]:not(:contains)"を使用しています。すべてがうまく見えますが、:not(:contains)セレクタは「構文エラー、認識できない式」を返します。他の例でも同じように動作しますが、何らかの理由で動作させることはできません。
$(function() {
$('#butt1').click(function() {
$("#tast td.col1:contains('" + $('#selector1').val() + "')").parent().show();
$("#tast td.col1:not(:contains('" + $('#selector1').val() + "'))").parent().hide();
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
<select id="selector1"><option value="all">All</option><option value="
Sample 1
">
Sample 1
</option></select>
<button id="butt1">
Filter
</button>
<table id="tast" class="TableStyle0">
<thead>
<tr>
<th width="90">
<p style="text-align: center;"><strong>Code</strong></p>
</th>
<th style="text-align: center;" width="203">
<p><strong>Dir</strong></p>
</th>
<th style="text-align: center;" width="136">
<p><strong>Inst</strong></p>
</th>
<th style="text-align: center;" width="98">
<p><strong>Form</strong></p>
</th>
<th style="text-align: center;" width="91">
<p><strong>Quota</strong></p>
</th>
<th style="text-align: center;" width="98">
<p><strong>Target</strong></p>
</th>
<th style="text-align: center;" width="98">
<p><strong>Total</strong></p>
</th>
<th style="text-align: center;" width="98">
<p><strong>Total payed</strong></p>
</th>
<th style="text-align: center;" width="81">
<p><strong>Told</strong></p>
</th>
</tr>
</thead>
<tbody>
<tr>
<td class="col1" valign="bottom" width="90">
<p>38.03.02</p>
</td>
<td class="col1"valign="bottom" width="203">
<p>Sample 1</p>
</td>
<td class="col1"valign="bottom" width="136">
<p>Data 1</p>
</td>
<td class="col1"valign="bottom" width="98">
<p>Text 1</p>
</td>
<td class="col1"valign="bottom" width="91">
<p>1</p>
</td>
<td class="col1"valign="bottom" width="98">
<p> </p>
</td>
<td class="col1"valign="bottom" width="98">
<p>4</p>
</td>
<td class="col1"valign="bottom" width="98">
<p>5</p>
</td>
<td class="col1"valign="bottom" width="81">
<p>60</p>
</td>
</tr>
<tr>
<td class="col1"valign="bottom" width="90">
<p>38.03.02</p>
</td>
<td class="col1"valign="bottom" width="203">
<p>Sample 2</p>
</td>
<td class="col1"valign="bottom" width="136">
<p>Data 2</p>
</td>
<td class="col1"valign="bottom" width="98">
<p>Text 3</p>
</td>
<td class="col1"valign="bottom" width="91">
<p> </p>
</td>
<td class="col1"valign="bottom" width="98">
<p> </p>
</td>
<td class="col1"valign="bottom" width="98">
<p> </p>
</td>
<td class="col1"valign="bottom" width="98">
<p> </p>
</td>
<td class="col1"valign="bottom" width="81">
<p>25</p>
</td>
</tr>
!不要なものを隠した後に列を表示するコードを追加しました。$(function(){ $( '#butt1'$( "#selector1 ').val()+"') ")。親()。show()。兄弟()。hide(); $(" tast td.col1:contains( '"+ '#selector1')。)val()+ "')"); parent()。show(); }); }); – mkrl