gpt4 book ai didi

jquery - 存储 DIV 元素的原始父元素

转载 作者:行者123 更新时间:2023-12-01 06:50:00 26 4
gpt4 key购买 nike

我正在使用 insertAfter 函数移动 div 元素的位置(和父元素)。像这样的事情:

$('.annotation i').click(function(){
$('.annotation').find('.comment').insertAfter('#container');
});

我想知道是否可以以某种方式存储原始父级,以便在另一个用户操作后将 div 元素移回其原始位置(在原始父级下)。

谢谢。

最佳答案

var parent = $('.annotation').find('.comment').parent();

将为您提供 .comment 类元素的父元素。

您还提到存储它的位置。您可能会发现 JQuery Index 有帮助。要么存储父元素的索引,要么以类似的方式存储特定 .comment 元素的位置以供以后使用。

关于jquery - 存储 DIV 元素的原始父元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16421377/

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