克隆一个 div 两次

发布于 2024-12-29 07:26:58 字数 513 浏览 1 评论 0原文

我基本上是在尝试克隆一个已经存在于页面上的 div 两次。这就是我想要克隆的内容:

<div class="tnt-zombies">
     //code in here
</div>

我还需要在一个克隆的 div 上设置一个增强类,在第二个克隆上设置一个高级类。我还想为这两个克隆添加一个克隆类,这样当我删除它们时,我可以调用克隆类。

我想要的最终结果是这样的:

<div class="tnt-zombies">//other code in here</div>
<div class="tnt-zombies cloned enhanced">//other code in here</div>
<div class="tnt-zombies cloned premium">//other code in here</div>

我希望这是有道理的。

I'm basically trying to clone a div that already lives on the page, two more times. Here's what I want to clone:

<div class="tnt-zombies">
     //code in here
</div>

I need to also had a class of enhanced on one cloned div and a class of premium on the second clone. I will also want to add a class of cloned to each of those two clones so when I go to remove them, I can just call the class of cloned.

The end result that I would like to have is this:

<div class="tnt-zombies">//other code in here</div>
<div class="tnt-zombies cloned enhanced">//other code in here</div>
<div class="tnt-zombies cloned premium">//other code in here</div>

I hope that makes sense.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

轻许诺言 2025-01-05 07:26:58

试试这个:

var the_clone = $('.tnt-zombies').clone().addClass('cloned');

var enhanced = the_clone.clone().addClass('enhanced');
var premium = the_clone.clone().addClass('premium');

$('body').append(enhanced, premium);

小提琴:http://jsfiddle.net/maniator/Arzmm/

Try this out:

var the_clone = $('.tnt-zombies').clone().addClass('cloned');

var enhanced = the_clone.clone().addClass('enhanced');
var premium = the_clone.clone().addClass('premium');

$('body').append(enhanced, premium);

Fiddle: http://jsfiddle.net/maniator/Arzmm/

悟红尘 2025-01-05 07:26:58

您也可以一次性完成此操作:

$('.tnt-zombies').clone().addClass('cloned enhanced').insertAfter('.tnt-zombies').end().clone().addClass('cloned premium').insertAfter('.tnt-zombies:last');

You could also do this in a single pass:

$('.tnt-zombies').clone().addClass('cloned enhanced').insertAfter('.tnt-zombies').end().clone().addClass('cloned premium').insertAfter('.tnt-zombies:last');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文