我想在dragging
方法中停止draggable
功能。
$('#dragitem').draggable({
scroll : false,
drag: function(event, ui){
//a if statement
if(….){
//I want to stop the dragging here.
}
}
});
有没有办法阻止拖动功能中的dragging
?谢谢你的帮助!
答案 0 :(得分:0)
尝试:
$("#dragitem").draggable({ disabled: true });
答案 1 :(得分:0)
试试这个:
$('#dragitem').draggable({
scroll : false,
drag: function(event, ui){
//a if statement
if(….){
//I want to stop the dragging here.
event.preventDefault();
}
}
});
答案 2 :(得分:0)
之前我一直处于这种情况,因为缺乏更好的解决方案,我在这里触发了mouseup
事件:
drag: function(event, ui){
if(true) {
// stop dragging
$(document).trigger('mouseup');
}
}