当我试图在选中复选框的两个列表之间移动 li 时,反之亦然,一些如何设法从选中的第一个列表移动到第二个列表,但如果我取消选中复选框,则坚持将 li 移回
这是小提琴http://jsfiddle.net/B4XhH/6/
$("input[type=checkbox]").click(function () {
var i=$('input:checkbox').index($(this));
if(confirm("Are you sure to move ? ")){
$( '#wizard1 li:eq('+i+')' ).insertAfter( '#wizard2 li:last' );
}else{
if($(this).is(":checked")){
alert("gdfg");
$(':checkbox').each(function(){ this.checked = false; });
//$("input[type=checkbox]").prop('checked', false);
}
}
});