<div id="parent">
<div class="child">
// something
</div>
</div>
<div id="other-div">
</div>
我需要移动&#34; other-div&#34;在孩子的内心#34;类,但这必须使用jQuery完成。 .append或.append只会导致&#34; other-div&#34;进入&#34;父母&#34;格。
答案 0 :(得分:1)
$('#parent .child').append($('#other-div'));
会将#other-div
专门附加到.child
$('#parent .child').append($('#other-div'));
.child{
background:red;
padding-bottom:10px;
}
#other-div{
background:green;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<div id="parent">
<div class="child">
// something
</div>
</div>
<div id="other-div">
other div
</div>
答案 1 :(得分:0)
我不明白你的问题,但我认为这会有所帮助
小提琴:https://jsfiddle.net/nrh9az4t/
使用:
$('#parent .child').append($('#other-div'));