我需要将div从一个地方移动到另一个地方并将相同的div放在新容器的第一个p
内。
我正在尝试它不起作用jsfiddle
<style type="text/css">
.box{
padding: 20px;
background: #f0e68c;
}
.content{
padding: 20px;
margin: 30px 0;
border: 1px solid #333;
}
</style>
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
$(".moveForm").appendTo(".box p:first-child");
$(this).hide(); // Hide move button
});
});
</script>
</head>
<body>
<div id="target" class="box">
<h1>Target Container</h1>
<p style="background:red;">one<p>
<p style="background:blue;">two<p>
</div>
<div class="moveForm">
<h1>Hello World.</h1>
<p>Click the "Move" button to move this content block first p colored box.</p>
<button type="button">Move</button>
</div>
</body>
答案 0 :(得分:0)
$(document).ready(function(){
$("button").click(function(){
$(".moveForm").appendTo(".box p:first");
$(this).hide(); // Hide move button
});
});