HTML5 dragend event firing immediately
问题 I have several draggable elements <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> And I have the following event handlers: var $questionItems = $('.question-item'); $questionItems .on('dragstart', startDrag) .on(