gpt4 book ai didi

javascript - jQuery - 在 sibling 中移动元素

转载 作者:行者123 更新时间:2023-11-29 21:20:41 25 4
gpt4 key购买 nike

我想将一个元素移动到同级。

在下面的示例中,我想将所有 .i-want-to-be-your-child 元素移动到同级元素 .come-to-me.


原始 HTML

<div>
<a href="#" class="come-to-me">Welcome!</a>
<span class="i-want-to-be-your-child">Thank you!</span>
</div>

<div>
<a href="#" class="come-to-me">Welcome!</a>
<span class="i-want-to-be-your-child">Thank you!</span>
</div>


我希望最终结果是

<div>
<a href="#" class="come-to-me">Welcome!<span class="i-want-to-be-your-child">Thank you!</span></a>
</div>

<div>
<a href="#" class="come-to-me">Welcome!<span class="i-want-to-be-your-child">Thank you!</span></a>
</div>


jQuery

$(document).ready(function() {
$('.i-want-to-be-your-child').detach().appendTo($(sibling('.come-to-me')));
//$('.i-want-to-be-your-child').appendTo($(this).parent().child('.come-to-me'));
});

我做错了什么?实现这一目标的最佳方法是什么?

jsfiddle

最佳答案

您的语法有些困惑。只需附加它,它就会移动

$('.come-to-me').append(function() {
return $(this).siblings('.i-want-to-be-your-child');
});

  $('.come-to-me').append(function() {
return $(this).siblings('.i-want-to-be-your-child');
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div>
<a href="#" class="come-to-me">Welcome!</a>
<span class="i-want-to-be-your-child">Thank you!</span>
</div>

<div>
<a href="#" class="come-to-me">Welcome!</a>
<span class="i-want-to-be-your-child">Thank you!</span>
</div>

关于javascript - jQuery - 在 sibling 中移动元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38645490/

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