如何将元素之前的所有 div 移到元素之后?

发布于 2024-12-03 10:49:16 字数 74 浏览 0 评论 0原文

我在 jQuery 中选择了一个 div,它前面有 div。我想选择所有这些,将它们复制到所选 div 后面,然后从原始位置删除它们。

I have a div that I've selected in jQuery and it has div's preceding it. I want to select all of them, copy them to AFTER the selected div and delete them from their original location.

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

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

发布评论

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

评论(2

戴着白色围巾的女孩 2024-12-10 10:49:16
var selected = $('#selected');
selected
    .prevAll()
    .insertAfter(selected);
var selected = $('#selected');
selected
    .prevAll()
    .insertAfter(selected);
梦开始←不甜 2024-12-10 10:49:16

将选定的 div 移动到其他 div 的前面不是更容易吗?

$('#selected_div').insertBefore($('#selected_div').siblings('div:first'));

Would it not be easier to move the selected div to the front of the others?

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