我正在尝试在 JavaScript 中为可拖动的 DIV 捕获 dragend 事件。dragend 事件根本没有触发,为什么?以及如何解决这个问题?PS,我使用 .draggable() 方法来自:jQuery UI 1.9.2
这是我的代码:http: //jsfiddle.net/vBMav/
HTML:
<div id="divId"> ... </div>
CSS:
#divId {
background-color: #000000;
color: #ffffff;
height: 200px;
width: 200px;
}
Javascript:
$('#divId').draggable();
$('#divId')
.bind('dragstart', function(){ $("#divId").text("drag start"); })
.bind('drag', function(){ $("#divId").text("dragging"); })
.bind('dragend', function(){ $("#divId").text("drag ended"); });