我有jQuery UI draggable
处理元素。
在拖动elementA
时,我正在从elementB
中移除一个班级。
我希望在elementA
停止拖动时进行检测,然后将类添加回elementB
。
$('.container').draggable({
// Output offset while dragging box
drag: function(){
$('.properties').removeClass('appear');
// Detect mouseup after dragging has stopped
// and add .appear back to .properties
}
});
答案 0 :(得分:1)
使用stop
:
$('.container').draggable({
// Output offset while dragging box
drag: function(){
$('.properties').removeClass('appear');
// Detect mouseup after dragging has stopped
// and add .appear back to .properties
},
stop: function() {
// Add your class back to elementB here.
$('.properties').addClass('appear');
}
});
在jQuery UI示例中详细了解stop
和Draggable事件:http://jqueryui.com/draggable/#events