我想让复选框作为单选按钮工作,同时分别添加和删除选中和取消选中的数据。
当只选中一个复选框时,我得到的工作正常,但当我同时选中两个复选框时,我得到的工作正常。问题是,当我选中第二个框时,选中第一个复选框后,未选中第一个复选框,但未从列表中删除 1st 的值。
这是小提琴:http: //jsfiddle.net/uZvMA/
JavaScript:
var $unique = $('input.unique');
$unique.click(function() {
$unique.filter(':checked').not(this).removeAttr('checked');
});
$("#BlackOlives-Half").change(function() {
// If checked
var value = $(this).val(),
$list = $("#itemList");
if (this.checked) {
//add to the right
$list.append("<li data-value='" + value + "'>" + value + "</li>");
}
else {
//hide to the right
$list.find('li[data-value="' + value + '"]').slideUp("fast", function() {
$(this).remove();
});
}
});
$("#BlackOlives-Full").change(function() {
// If checked
var value = $(this).val(),
$list = $("#itemList");
if (this.checked) {
//add to the right
$list.append("<li data-value='" + value + "'>" + value + "</li>");
}
else {
//hide to the right
$list.find('li[data-value="' + value + '"]').slideUp("fast", function() {
$(this).remove();
});
}
});
HTML:
<ul>
<li><div id="BlackOlives-Half10">Black Olives</div>
<div class="radioButtons">
<input type="checkbox" id="BlackOlives-Half" onchange="" class='unique' name="BlackOlives" value="5" /> <label for="BlackOlives-Half">Half</label>
<input type="checkbox" id="BlackOlives-Full" onclick="" class='unique' name="BlackOlives" value="10" /> <label for="BlackOlives-Full">Full</label>
</div>
</li>
</ul>
<ul id="itemList"></ul>