我有下面的代碼片段,我沒有訪問標記來添加id的/類。刪除某些值的複選框
我需要做的是刪除任何具有特定值的複選框。有10個左右的值,如果任何複選框有這些值,他們需要從標記中刪除。除此之外,我還需要在此複選框輸入之前同時刪除其相關聯的文本「添加」。我將如何定位這些複選框輸入和關聯的「添加」文本以便刪除?
編輯:可以說,值是1234,abcd,efgh,ijkl,54330,ll64等......我需要檢查這些和其他值。
<table width="100%"cellpadding="0" cellspacing="0"><tr>
<td valign="top">
<b><FONT class="pricecolorsmall colors_productprice">Sale Price: £4.95 </font></b>
<br /><div class="337">Add</div> <input type="checkbox" name="ProductCode2"
value="480GCFD">
</td>
</tr></table>
</td>
<td valign="top" width="25%">
<table width="100%"cellpadding="0" cellspacing="0"><tr>
<td valign="top">
<b><font class="pricecolorsmall colors_productprice"><font class="smalltext colors_text"><b>Sale Price </b></font> £1.00 </font></b>
<br /><div class="337">Add</div> <input type="checkbox" name="ProductCode2"
value="LL64">
</td>
</tr></table>
</td>
<td valign="top" width="25%">
<table width="100%"cellpadding="0" cellspacing="0"><tr>
<td valign="top">
<b><FONT class="pricecolorsmall colors_productprice">Sale Price: £8.50 </font></b>
<br /><div class="337">Add</div> <input type="checkbox" name="ProductCode2"
value="54330">
</td>
</tr></table>
</td>
<td valign="top" width="25%">
<table width="100%"cellpadding="0" cellspacing="0"><tr>
<td valign="top">
<b><FONT class="pricecolorsmall colors_productprice">Sale Price: £4.95 </font></b>
<br /><div class="337">Add</div> <input type="checkbox" name="ProductCode2"
value="460GCRS">
</td>
</tr></table>
這正是我一直在尋找和完美運作。知道我可以使用一個數組,而不是10個單獨的行來刪除只是不知道該怎麼做,不知道如何定位以前的div。今天學了一個新的Jquery術語,「.end()必須看起來那個,THX – user357034 2010-09-09 00:27:11
@user - 不客氣,很高興它工作。:o) – user113716 2010-09-09 00:28:59