我想看看盒子移动的克隆,但似乎没有。另一方面,如果我在<div>
内插入一个段落,则该段落的内容将被正确克隆。最初,我想同时移动<div>
(即红色框)和<p>
。我的jquery选择器错了吗?
$(function() {
$("#div1").draggable({
helper: "clone"
});
});
#div1 {
width: 100px;
height: 100px;
border: solid 2px black;
background: red;
}
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/ui-lightness/jquery-ui.css">
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
<div id="div1">
</div>