我想過濾使用類和多個select2框的表。如何使用多個select2框篩選表格?
表HTML
<table class="table">
<tbody>
<tr class="kanban-event Austin">
<td>...</td>
</tr>
<tr class="csm-event Charlotte">
<td>...</td>
</tr>
<tr class="cal-event Charlotte">
<td>...</td>
</tr>
<tr class="cspo-event Austin">
<td>...</td>
</tr>
<tr class="cal-event Raleigh">
<td>...</td>
</tr>
<tr class="kanban Charlotte">
<td>...</td>
</tr>
<tr class="cspo-event Austin">
<td>...</td>
</tr>
<tr class="csm-event Charlotte">
<td>...</td>
</tr>
<tr class="safe-event Austin">
<td>...</td>
</tr>
<tr class="cspo-event Raleigh">
<td>...</td>
</tr>
<tr class="csm-event Charlotte">
<td>...</td>
</tr>
<tr class="csm-event Raleigh">
<td>...</td>
</tr>
</tbody>
</table>
選擇HTML
<select id="location">
<option value="all">All Locations ...</option>
<option value="Austin">Austin, TX</option>
<option value="Charlotte">Charlotte, NC</option>
<option value="Raleigh">Raleigh, NC</option>
</select>
<select id="course">
<option value="all">All Courses ...</option>
<option value="csm">Certified Scrum Master (CSM)</option>
<option value="cspo">Certified Scrum Product Owner (CSPO)</option>
<option value="cal">Certified Agile Leadership (CAL)</option>
<option value="safe">Scaled Agile Framework (SAFe®)</option>
<option value="kanban">Kanban</option>
</select>
當前JS
jQuery(function() {
jQuery("#course").on("select2-selecting", function (evt) {
// console.log(evt.val);
// console.log(jQuery('#events-table tr:not(".'+evt.val+'-event")'));
jQuery('#events-table tr').show();
jQuery('#events-table thead tr').show();
jQuery('#events-table tr:not(".'+evt.val+'-event")').hide();
jQuery('#events-table thead tr').show();
if (evt.val == '') {
jQuery('#events-table tr').show();
jQuery('#events-table thead tr').show();
}
});
jQuery("#location").on("select2-selecting", function (evt) {
// console.log(evt.val);
// console.log(jQuery('#events-table tr:not(".'+evt.val+'")'));
jQuery('#events-table tr').show();
jQuery('#events-table thead tr').show();
jQuery('#events-table tr:not(".'+evt.val+'")').hide();
jQuery('#events-table thead tr').show();
if (evt.val == '') {
jQuery('#events-table tr').show();
jQuery('#events-table thead tr').show();
}
});
});
當前JS允許s過濾到表,但一次只能處理一個過濾器。我想知道如何讓選擇一起工作,例如在奧斯汀舉行的CSM活動以及其他一切隱藏?
在此先感謝。
編輯:這是一個小提琴https://jsfiddle.net/5202jsax/6/
請添加jsfiddle,這會很好。 – Webinion
@PandhiBhaumik - 小提琴添加 –