jQuery:追加到父级

发布于 2024-10-11 23:55:49 字数 611 浏览 4 评论 0原文

我似乎无法让appendTo 工作。我做错了什么?

$('div:nth-child(2n) img').appendTo(parent);

当前标记:

<div class="container">
  <img src="123.jpg" />
  <p>Hey</p>
</div>
<div class="container">
  <img src="123.jpg" />
  <p>Hey</p>
</div>

我想要这个输出:

<div class="container">
  <p>Hey</p>
  <img src="123.jpg" />
</div>
<div class="container">
  <p>Hey</p>
  <img src="123.jpg" />
</div>

请帮助我...我每分钟都在撕扯我的头发..:-S

I can't seem to get the appendTo to work. What do I do wrong?

$('div:nth-child(2n) img').appendTo(parent);

Current markup:

<div class="container">
  <img src="123.jpg" />
  <p>Hey</p>
</div>
<div class="container">
  <img src="123.jpg" />
  <p>Hey</p>
</div>

I want this output:

<div class="container">
  <p>Hey</p>
  <img src="123.jpg" />
</div>
<div class="container">
  <p>Hey</p>
  <img src="123.jpg" />
</div>

Please help me guys... I'm tearing my hair of every minute.. :-S

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

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

发布评论

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

评论(4

白昼 2024-10-18 23:55:49

以下内容应该足够了:

$("div>img").each(function(){
    $(this).appendTo($(this).parent());
});

在此处查看它的工作原理: http://jsfiddle.net/EtxqL/

您无法从中推断出每个项目的父项appendTo() 的“选择器”参数。执行您想要的操作的唯一方法是循环遍历项目,将每个项目附加到其父级。查看以下链接中的 API。

.appendTo() API

。每个API

The following should suffice:

$("div>img").each(function(){
    $(this).appendTo($(this).parent());
});

See it working here: http://jsfiddle.net/EtxqL/

You can't infer each item's parent from the 'selector' parameter to appendTo(). The only way to do what you want is to loop through the items, appending each one to its parent. Check out the APIs in the following link.

.appendTo() API

.each API

方觉久 2024-10-18 23:55:49

这就是你所追求的吗?

$('.container > img').each(function () {
    $(this).parent().append(this);
});

它只是获取每个容器中的 并作为容器的第一个子容器移动。

Is this what you're after?

$('.container > img').each(function () {
    $(this).parent().append(this);
});

It simply takes the <img> within every container and moves as the first child of the container.

能否归途做我良人 2024-10-18 23:55:49

您可以使用 .prepend() 而不是追加
在父级的末尾附加插入。
但在父级的开头添加前置插入。
那么就像:

$('.container > p').each(function () {
    $(parent).prepend(this);
});

You can use .prepend() instead of append
Append insert at the end off a the parent.
But prepend insert at the begin from the parent.
so then like:

$('.container > p').each(function () {
    $(parent).prepend(this);
});
心不设防 2024-10-18 23:55:49

我做了一个小例子,我希望你的意思是一样的......

$(document).ready(function() {
    $('.container > img').each(function() {
        $(this).parent().append(this);
    });
});

I made a little example and I hope you mean the same thing...

$(document).ready(function() {
    $('.container > img').each(function() {
        $(this).parent().append(this);
    });
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文