gpt4 book ai didi

javascript - 克隆元素并将其添加到另一个元素中

转载 作者:行者123 更新时间:2023-11-28 16:28:13 25 4
gpt4 key购买 nike

考虑以下 HTML 标记:

<form action="">
<div class="row subtitle">
<span>Some stuff.</span>
</div>

<div class="more_subtitles"></div>


<a href="#" class="white add_more"><span>Add more</span></a>
</form>

和 jQuery:

$('.add_more').live('click', function() {

var el_of_form, subtitle, more_subtitles;

el_of_form = $(this).closest('form');

subtitle = $(el_of_form).find('.subtitle');
more_subtitles = $(el_of_form).find('.more_subtitles');

console.log(subtitle);
console.log(more_subtitles);

$(more_subtitles).add(subtitle);

return false;

});

为什么不起作用? console.log() 找到这些元素...

我想要完成的是,当按下按钮时,它会克隆 subtitle 元素并将其添加到 more_subtitles 元素中。用户可以一次又一次地重复它。

最佳答案

more_subtitles.append(subtitle.clone());

关于javascript - 克隆元素并将其添加到另一个元素中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7179023/

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