我在一个 div 中有四个复选框。
<div id="tab1" class="tab-pane">
<input type="checkbox" id="chkbox" value="101"> This is 101
<input type="checkbox" id="chkbox" value="102"> This is 102
<input type="checkbox" id="chkbox" value="103"> This is 103
<input type="checkbox" id="chkbox" value="104"> This is 104
</div>
现在,在每次单击时,我想在<li>
选中/取消选中复选框时在右侧的另一个 div 上插入/删除一个项目。另一个div:
<div id="items">
<ul id="itemList">
</ul>
我正在做这样的事情:
$("#chkbox").click(function() {
// If checked
if ($(this).is(":checked")) {
//add to the right
$a = $(this).val();
$("#itemList").append('<li>'+$a+'</li>');
}
else {
//hide to the right
$("#itemList").slideUp("fast", function () {
$("#itemList").child.remove();
});
}
});
这似乎不起作用:(