如何动态地将 2 个 div 包装到另一个 div 中?
我有 2 个从数组创建的 div:
$.each(data, function(i,item) {
$('<img/>').attr("src", item.media_path).wrap('<div class="friend_pic' + item.id + '"></div>').appendTo('.sex');
$('<div class="friends-name' + item.id + '" id="fname_' + item.id + '" />').html(item.fname).appendTo('.sex');
});
我想将它们全部包装在一个 div 中,如下所示:
<div class="sex">... the divs from the each function ...<div>
<div class="sex">... the divs from the each function ...<div>
<div class="sex">... the divs from the each function ...<div>
我正在使用: $(';').appendTo('.mutual_row');
或者:
$('.mutual_friends, friends-name1').wrap('<div class="sex"></div>')
但是他们给出的结果是将它们全部包装在一个名为 sex
的 div 中
I have 2 divs that I am creating from an array:
$.each(data, function(i,item) {
$('<img/>').attr("src", item.media_path).wrap('<div class="friend_pic' + item.id + '"></div>').appendTo('.sex');
$('<div class="friends-name' + item.id + '" id="fname_' + item.id + '" />').html(item.fname).appendTo('.sex');
});
And I want to wrap them all in a div, like this:
<div class="sex">... the divs from the each function ...<div>
<div class="sex">... the divs from the each function ...<div>
<div class="sex">... the divs from the each function ...<div>
I am using: $('<div class="sex"></div>').appendTo('.mutual_row');
or:
$('.mutual_friends, friends-name1').wrap('<div class="sex"></div>')
But they give the wring result wrappin gthem all in one div called sex
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)