我想拖动一个可排序容器的div并将它们放到一个droppable div(这是不可排序的)上。我曾尝试使用html5拖放事件,但没有一个被解雇。 最重要的是,可排序容器上的dragstart事件不会被触发。 有人可以建议我一个解决方案。我只想要启动dragstart事件。这是我的完整代码:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery UI Sortable - Handle empty divsts</title>
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.2/jquery-ui.js"></script>
<style>
.draggableDivs{
background-color: orange;
border: solid black;
}
</style>
</head>
<body>
<div id="sortable" style="float: left;">
<div class="draggableDivs" draggable="true">Can be dropped !!..</div>
<div class="draggableDivs" draggable="true">..on an empty list</div>
<div class="draggableDivs" draggable="true">Item 3</div>
<div class="draggableDivs" draggable="true">Item 4</div>
<div class="draggableDivs" draggable="true">Item 5</div>
</div>
<div id="dropTarget" style="width: 500px; height: 500px; background-color: skyblue; float: left; text-align: center">
<h4>Drop Here</h4>
</div>
<script>
$("#sortable").sortable();
document.getElementById('sortable').addEventListener('dragstart', function(evt) {
console.log("The 'dragstart' event fired.");
evt.dataTransfer.setData('text', evt.target.textContent);
}, false);
</script>
</body>
</html>
答案 0 :(得分:2)
您可以使用jquery ui:
实现以下功能基本上我们克隆被拖动的元素并将其附加到drop event上的droppable,因为如果我们删除被拖动的元素,jQuery ui会向我们抛出错误。
然后我们删除stop event回调中的实际元素。
$("#sortable").sortable();
$("#dropTarget").droppable({
accept: "div",
drop: function(event, ui) {
ui.draggable.clone().appendTo(this);
ui.draggable.remove();
}
})
&#13;
#sortable {
float: left;
}
.draggableDivs {
background-color: orange;
border: solid black;
}
#dropTarget {
width: 500px;
height: 500px;
float: left;
text-align: center;
background-color: skyblue;
}
&#13;
<link href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
<div id="sortable">
<div class="draggableDivs">Can be dropped !!..</div>
<div class="draggableDivs">..on an empty list</div>
<div class="draggableDivs">Item 3</div>
<div class="draggableDivs">Item 4</div>
<div class="draggableDivs">Item 5</div>
</div>
<div id="dropTarget">
<h4>Drop Here</h4>
</div>
&#13;
附注: