jQuery 二维拖放元素(非绝对位置)
jQuery 2D drag and drop element (Not absolute position)
我将使用拖放将外部元素放入内部 html。
所以我假设是这样的。这是内html.
<div class="inner_html">
<div class="title">
<h1>This is title</h1>
</div>
<div class="body">
<li>this is element</li>
<a>element</a>
</div>
</div>
这里是外部html。 <div>This is external element</div>
我要将外部元素拖放到内部 html。
所以final元素可以得到很多结果。
我认为如果位置是绝对的,那么可以使用 jquery 可拖动插件轻松完成。
但我不想要绝对的位置。只想放入内部 html.
谁能帮帮我?
考虑以下代码。
$(function() {
$(".drag > div").draggable();
$(".inner_html").droppable({
drop: function(e, ui) {
ui.draggable.css({
top: "",
left: "",
position: "inherit"
}).appendTo($(".inner_html"));
}
});
});
.inner_html {
width: 340px;
background: #ccc;
padding: 1em;
margin-bottom: 20px;
}
.inner_html>div {
background: white;
border: 1px solid #222;
border-radius: 3px;
}
.drag {
border: 1px solid #ccc;
width: 340px;
}
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<div class="inner_html">
<div class="title">
<h1>This is title</h1>
</div>
<div class="body">
<a>Link</a>
</div>
</div>
<div class="drag items">
<h3>Items</h3>
<div>This is external element</div>
</div>
我将使用拖放将外部元素放入内部 html。 所以我假设是这样的。这是内html.
<div class="inner_html">
<div class="title">
<h1>This is title</h1>
</div>
<div class="body">
<li>this is element</li>
<a>element</a>
</div>
</div>
这里是外部html。 <div>This is external element</div>
我要将外部元素拖放到内部 html。 所以final元素可以得到很多结果。 我认为如果位置是绝对的,那么可以使用 jquery 可拖动插件轻松完成。 但我不想要绝对的位置。只想放入内部 html.
谁能帮帮我?
考虑以下代码。
$(function() {
$(".drag > div").draggable();
$(".inner_html").droppable({
drop: function(e, ui) {
ui.draggable.css({
top: "",
left: "",
position: "inherit"
}).appendTo($(".inner_html"));
}
});
});
.inner_html {
width: 340px;
background: #ccc;
padding: 1em;
margin-bottom: 20px;
}
.inner_html>div {
background: white;
border: 1px solid #222;
border-radius: 3px;
}
.drag {
border: 1px solid #ccc;
width: 340px;
}
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<div class="inner_html">
<div class="title">
<h1>This is title</h1>
</div>
<div class="body">
<a>Link</a>
</div>
</div>
<div class="drag items">
<h3>Items</h3>
<div>This is external element</div>
</div>