如何使用 jQuery 将一个元素移动到另一个元素中
答案:使用jQuery .appendTo()
方法
您可以使用 jQuery .appendTo()
方法将一个元素移动到另一个元素中。
所选元素将完全从其在 DOM 中的旧位置取出并插入到目标容器的末尾。 让我们试试下面的例子:
示例
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery 将一个 Div 元素移动到另一个 Div</title>
<style>
.box{
padding: 20px;
background: #f0e68c;
}
.content{
padding: 20px;
margin: 30px 0;
border: 1px solid #333;
}
</style>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$(".content").appendTo("#target");
$(this).hide(); /* Hide move button */
});
});
</script>
</head>
<body>
<div id="target" class="box">
<h1>Target Container</h1>
</div>
<div class="content">
<h1>Hello World.</h1>
<p>Click the "Move" button to move this content block inside colored box.</p>
<button type="button">Move</button>
</div>
</body>
</html>
FAQ 相关问题解答
以下是与此主题相关的更多常见问题解答:
- 如何在 jQuery 中向 DOM 添加元素
- 如何在 jQuery 中从 DOM 中删除元素
- 如何在jQuery中使用箭头键向左、向右、向上和向下移动元素
- 如何使用 jQuery 删除包装元素但保持文本内容完整