jQuery:追加到父级
我似乎无法让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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
以下内容应该足够了:
在此处查看它的工作原理: http://jsfiddle.net/EtxqL/
您无法从中推断出每个项目的父项appendTo() 的“选择器”参数。执行您想要的操作的唯一方法是循环遍历项目,将每个项目附加到其父级。查看以下链接中的 API。
.appendTo() API
。每个API
The following should suffice:
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
这就是你所追求的吗?
它只是获取每个容器中的
并作为容器的第一个子容器移动。
Is this what you're after?
It simply takes the
<img>
within every container and moves as the first child of the container.您可以使用 .prepend() 而不是追加
在父级的末尾附加插入。
但在父级的开头添加前置插入。
那么就像:
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:
我做了一个小例子,我希望你的意思是一样的......
I made a little example and I hope you mean the same thing...