我有几个可拖动的元素
<div Class="question-item" draggable="true">Box 1: Milk was a bad choice.</div>
<div class="question-item" draggable="true">Box 2: I'm Ron Burgundy?</div>
<div class="question-item" draggable="true">Box 3: You ate the entire wheel of cheese? </div>
<div class="question-item" draggable="true">Box 4: Scotch scotch scotch</div>
我有以下事件处理程序:
var $questionItems = $('.question-item');
$questionItems
.on('dragstart', startDrag)
.on('dragend', removeDropSpaces)
.on('dragenter', toggleDropStyles)
.on('dragleave', toggleDropStyles);
function startDrag(e){
console.log('dragging...');
addDropSpaces();
e.stopPropagation();
}
function toggleDropStyles(){
$(this).toggleClass('drag-over');
console.log(this);
}
function addDropSpaces(){
$questionItems.after('<div class="empty-drop-target"></div>');
}
function removeDropSpaces(){
console.log("dragend");
$('.empty-drop-target').remove()
}
为什么它只适用于第一个可拖动的。如果我拖动说最后一个可拖动的 - dragend 事件会立即触发。(我不想使用 jQuery UI 顺便说一句)
这对我来说毫无意义 - 它看起来像一个错误。
我在 OSX 上使用 Chrome v 30。
这是 JSFiddle 的链接:http: //jsfiddle.net/joergd/zGSpP/17/
(编辑:这是对以下问题的重复:当我拖动时,dragend、dragenter 和 dragleave 立即触发- 但我认为原始海报可以使用 jQuery UI,而我希望它是 HTML5 原生的)