我有2個單選按鈕,我目前檢查他們的價值如果是6或12,並隱藏/顯示相關的div在我的表中。檢查單選按鈕的值如果是true或false,並顯示隱藏div
<tr>
<td>
<div class="Price6 band" style="display: none;">21.09</div>
<div class="Price12 band">21.09</div>
</td>
</tr>
<tr>
<td>
<input id="radio1" class="radio" type="radio" name="price" value="6">
<label for="radio1">£24.95</label>
<input id="radio1" class="radio" type="radio" name="price" value="12">
<label for="radio1"> £6.95</label>
</td>
</tr>
如何編輯我的jQuery代碼,以便它檢查單選按鈕的值如果是true或false而不是數字值?
我的jQuery目前
$(document).ready(function() {
$("input[name$='price']").click(function() {//switch bewtween price bands
var test = $(this).val();
$("div.band").hide();
$(".Price" + test).show();
});
});
你正在使用哪個jQuery版本? – Seybsen
第二套radio1(輸入和標籤)應該是radio2嗎?這個名字仍然使他們成爲一個羣體? –