gpt4 book ai didi

javascript - 拖动后检测鼠标松开

转载 作者:行者123 更新时间:2023-11-28 01:51:23 26 4
gpt4 key购买 nike

我有 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
}

});

最佳答案

使用停止:

$('.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

关于javascript - 拖动后检测鼠标松开,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19648699/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com