我有一個2格與多個複選框和2個按鈕添加和刪除。 檢查一些項目,然後單擊添加我想將它們更新到2nd div,無需重複值和相同的刪除過程。使用jquery添加或刪除多個清單項目到另一個列表
我試圖做到這一點,但無法做到正確。 我試過如下
$(document).ready(function() {
$('#btn-add').click(function(){
$('input[type="checkbox"]:checked').each(function() {
$('.chk-container-Add').append("<li><input class="checkbox2" type="checkbox" value='"+$(this).val()+"'>"+$(this).text()+"</li>");
$(this).remove();
// Has to be added in div2 and removed from div1
});
});
$('#btn-remove').click(function(){
//Has to remove from div2 and to be added in div1
});
});
這裏是我的小提琴演示
http://jsfiddle.net/M_Sabya/xuktz0j7/3/
感謝這爲我工作。 –