请帮助我,因为我仍然在努力把握jQuery的编码。 我有这样的数据,并希望根据用户的复选框,选择如下的HTML代码进行过滤。
没事的时候检查显示。所有行。
当所有的复选框选中显示。所有的行
所显示的符合所选的标准。只有行。 例如,
一种。 当2GB进行确认,仅2GB行显示。
湾 当运输和2GB的检查,只有内存3显示
<input type="checkbox" >1GB<br/>
<input type="checkbox" >2GB<br/>
<input type="checkbox" >4GB<br/>
<input type="checkbox" >1000MHz<br/>
<input type="checkbox" >1333MHz<br/>
<input type="checkbox" >Discontinued<br/>
<input type="checkbox" >Shipping<br/>
<br /><br />
<table class="someclass" border="0" cellpadding="0" cellspacing="0" summary="bla">
<caption>bla bla</caption>
<thead>
<tr id="ProductID">
<th>Product Number</th>
<th>Status</th>
<th>Capacity</th>
<th>Speed</th>
</tr>
</thead>
<tbody>
<tr id="Memory1">
<td>Memory1</td>
<td>Shipping</td>
<td>1GB</td>
<td>1333MHz</td>
</tr>
<tr id="Memory2">
<td>Memory2</td>
<td>Discontinued</td>
<td>1GB</td>
<td>1000MHz</td>
</tr>
<tr id="Memory3">
<td>Memory3</td>
<td>Shipping</td>
<td>2GB</td>
<td>1333MHz</td>
</tr>
<tr id="Memory4">
<td>Memory4</td>
<td>Discontinued</td>
<td>4GB</td>
<td>1000MHz</td>
</tr>
<tr id="Memory5">
<td>Memory5</td>
<td>Shipping</td>
<td>4GB</td>
<td>1333MHz</td>
</tr>
</tbody>