gpt4 book ai didi

javascript - 在附加 div 第一个 div 的 radio 上选中自动未选中

转载 作者:行者123 更新时间:2023-12-03 04:51:56 25 4
gpt4 key购买 nike

每当我尝试克隆 div 时,第一个 div 都会自动检查 radio 未选中..

为什么会发生这种情况?我做错了什么..

用户检查了 radio 而不是单击添加按钮,当时第一次检查的值消失了..但不应该取消选中..

这是代码。

var count = 1;
var is = 0;
var isx = 1;
$(function () {
$("body").on('click', '.btn-add', function (e) {
count++;
e.preventDefault();
if (count > 5)
return;
var controlForm = $('.miuplod:first'),
currentEntry = $(this).parents('.uploadgroup:first'),
newEntry = $(currentEntry.clone()).appendTo(controlForm);
newEntry.find('input').val('');
newEntry.find('input:radio').attr('checked', false);
newEntry.find('input:radio[name="chotype' + is + '"]').attr('name', 'chotype' + isx);
newEntry.find('input:radio[name="align' + is + '"]').attr('name', 'align' + isx);
is++;
isx++;
controlForm.find('.uploadgroup:not(:last) .btn-add')
.remove()
.removeClass('btn-success');
//.html('<span class="glyphicon glyphicon-minus">-</span>');
}).on('click', '.btn-remove', function (e) {
$(this).parents('.uploadgroup:first').remove();
e.preventDefault();
count--;
is--;
isx--;
return false;
});
});

请帮助我..这是一个jsfiddle link .

最佳答案

您需要修改克隆的元素,然后追加它。

 newEntry = currentEntry.clone();
//Do your operation

newEntry.appendTo(controlForm);

Update fiddle

关于javascript - 在附加 div 第一个 div 的 radio 上选中自动未选中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42618574/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com