您好我有2张这样的桌子,有一些用于过滤表格的复选框:
<label><input type="checkbox" name="chk_filter_Grocery_1" id="chk_filter_Grocery_1_1" value="1;">Alamond</label>
<label><input type="checkbox" name="chk_filter_Grocery_1" id="chk_filter_Grocery_1_2" value="14;">Apple</label>
<label><input type="checkbox" name="chk_filter_Grocery_1" id="chk_filter_Grocery_1_3" value="5;6;">Lemon & Orange</label>
<label><input type="checkbox" name="chk_filter_Grocery_1" id="chk_filter_Grocery_1_4" value="17;">Coconut</label>
<table width="620px" id="Grocery-NA768">
<tbody>
<tr class="14">
<td width="185" height="35" align="left">Apple</td>
<td width="65" height="35" align="center" valign="middle">3 Kg</td>
<td width="80" height="35" align="center" valign="middle">28/07/2011</td>
</tr>
<tr class="5">
<td height="35" align="left">Lemon</td>
<td height="35" align="center" valign="middle">5 Kg</td>
<td height="35" align="center" valign="middle">28/07/2011 </td>
</tr>
<tr class="17">
<td height="35" align="left">Coconut</td>
<td height="35" align="center" valign="middle">4 Kg</td>
<td height="35" align="center" valign="middle">28/07/2011 </td>
</tr>
<tr class="14">
<td height="35" align="left">Apple</td>
<td height="35" align="center" valign="middle">2 Kg</td>
<td height="35" align="center" valign="middle">27/04/2011 </td>
</tr>
<tr class="1">
<td height="35" align="left">Almond</td>
<td height="35" align="center" valign="middle">3 Kg</td>
<td height="35" align="center" valign="middle">27/04/2011 </td>
</tr>
<tr class="6">
<td height="35" align="left">Orange</td>
<td height="35" align="center" valign="middle">3 kg</td>
<td height="35" align="center" valign="middle">27/04/2011 </td>
</tr>
</tbody>
</table>
<label><input type="checkbox" name="chk_filter_Wine_1" id="chk_filter_Wine_1_1" value="51;">Brunello di Montalcino</label>
<label><input type="checkbox" name="chk_filter_Wine_1" id="chk_filter_Wine_1_2" value="4;">Dolcetto</label>
<label><input type="checkbox" name="chk_filter_Wine_1" id="chk_filter_Wine_1_3" value="35;64;">Pinot noir & Pinot blanc</label>
<label><input type="checkbox" name="chk_filter_Wine_1" id="chk_filter_Wine_1_4" value="72;">Shiraz </label>
<table width="620px" id="Wine-NA768">
<tbody>
<tr class="4">
<td width="185" height="35" align="left">Dolcetto</td>
<td width="65" height="35" align="center" valign="middle">3 b</td>
<td width="80" height="35" align="center" valign="middle">28/07/2011</td>
</tr>
<tr class="35">
<td height="35" align="left">Pinot blanc</td>
<td height="35" align="center" valign="middle">5 b.</td>
<td height="35" align="center" valign="middle">28/07/2011 </td>
</tr>
<tr class="72">
<td height="35" align="left">Shiraz</td>
<td height="35" align="center" valign="middle">4 b.</td>
<td height="35" align="center" valign="middle">28/07/2011 </td>
</tr>
<tr class="14">
<td height="35" align="left">Dolcetto</td>
<td height="35" align="center" valign="middle">2 b.</td>
<td height="35" align="center" valign="middle">27/04/2011 </td>
</tr>
<tr class="51">
<td height="35" align="left">Brunello di Montalcino</td>
<td height="35" align="center" valign="middle">3 b.</td>
<td height="35" align="center" valign="middle">27/04/2011 </td>
</tr>
<tr class="64">
<td height="35" align="left">Pinot noir</td>
<td height="35" align="center" valign="middle">3 b.</td>
<td height="35" align="center" valign="middle">27/04/2011 </td>
</tr>
</tbody>
</table>
这两个表有不同的ID(Grocery-NA768)和(Wine-NA768),每个复选框都有一个或多个(最大2)值(1; 12;),每个表都有相应的编号作为类
我想点击复选框过滤表格。即当我点击苹果复选框(值14)时,我想只看到表中的苹果(第14类),然后如果我点击柑橘(值1; 12;)复选框,我会看到苹果(第14类),柠檬(第5类)和橙色。如果我取消选中所有复选框,我将看到整个列表。 葡萄酒桌也是如此。我是jquery的新网站,我发现如何显示或隐藏表格行,点击一个复选框,但没有类似于我的需求。
提前致谢 米歇尔
答案 0 :(得分:1)
工作示例:http://jsfiddle.net/petersendidit/6dNKA/3/
请参阅代码中的注释:
// Define some config objects and loop over them to get things set up
$.each([{
table: $("#Grocery-NA768"),
inputs: $("input[name='chk_filter_Grocery_1']")
},{
table: $("#Wine-NA768"),
inputs: $("input[name='chk_filter_Wine_1']")
}],function(i, obj){
var list = [];
obj.inputs.click(function() {
var that = $(this),
value = that.val().match(/\d+/g),
rows = obj.table.find("tr");
// If its checked then add it to the list
if ( that.prop("checked") ) {
list = $.merge(list, value);
} else {
// if its not then remove the items from the list
list = $.map( list, function( x ) {
return ( $.inArray( x, value ) > -1 ) ? null : x;
});
}
// If the list has items
if ( list.length ) {
rows.hide() // hide all rows
.filter("."+list.join(",.")) // find the ones we care about
.show(); // and show them
} else {
// If no items in the list
rows.show(); // show every row
}
});
});