gpt4 book ai didi

jquery - 使用 jquery-ui Droppable 时,为什么当有人开始拖动可拖动对象时会立即触发接受事件?

转载 作者:行者123 更新时间:2023-12-01 00:18:27 24 4
gpt4 key购买 nike

我有一个页面有大量jquery UI draggables and a large number of droppable s。我想要一些自定义逻辑来确定可放置项是否接受某个可拖动项,因此我编写了一些逻辑 in the "accept" event of the droppable 。它有效,但我注意到的一件事是,当您开始拖动一个项目时,该事件会立即触发,并且当时所有可放置的项目都会触发该事件。

这看起来效率很低。我认为当你悬停时,它适合单个可放置的权利,但情况似乎并非如此。您是否有任何理由认为它是这样编码的(因为它看起来非常低效,就好像我有 100 个 droppables,即使用户只尝试拖动到一个 droppables 中,它也会触发 100 次)并且还有什么方法可以有我想要的行为。

我想将逻辑放入放置事件中,以简单地进行检查并删除可拖动项目(以模拟不接受它),但问题是您没有获得任何漂亮的“恢复”动画,因此它看起来有点不一致(与基于接受事件时看到的内容相比)

关于如何在我移动某些东西时仍然可以插入一些自定义逻辑但不浪费周期在每个可放置的权利上触发(并且仍然获得恢复动画),有什么想法吗?

最佳答案

我认为开销没有那么大,但如果您确实需要替代解决方案:在开始时获取可拖动元素的起始位置并将其保存在元素的 data() 中。在放置例程中进行逻辑检查。如果失败,则将元素动画回到起始位置。这将确保事件仅特定于被拖动和可放置的元素。

http://jsfiddle.net/samnunnally/sgy29/2/

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>droppable demo</title>
<link rel="stylesheet"
href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css">
<style>

#notAllowed {
width: 100px;
height: 100px;
background: #ccc;
}

#allowed {
width: 100px;
height: 100px;
background: red;
}

#droppable {
position: absolute;
left: 250px;
top: 0;
width: 125px;
height: 125px;
background: #999;
color: #fff;
padding: 10px;
}
</style>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
</head>
<body>
<div id="droppable" >Drop here</div>
<div id="notAllowed" >not allowed to drop</div>
<div id="allowed">allowed to drop</div>
<script>

function capturePosition(event, ui) {

ui.helper.data( 'startPosition', ui.position);
}
$( document ).ready(function() {

$("#notAllowed").draggable({
start : capturePosition
});

$("#allowed").draggable({
start : capturePosition
});

$("#droppable").droppable({
drop : function(event, ui) {
//do logic to determine if it can be dropped
if(ui.draggable.attr('id') == 'notAllowed'){
var startPosition = ui.draggable.data('startPosition');
ui.draggable
.animate({
'left':
'+='+ (startPosition.left - ui.draggable.offset().left + $('body').offset().left) + 'px' },
'slow' )

.animate({
'top':
'+='+ (startPosition.top - ui.draggable.offset().top + + $('body').offset().top) + 'px' },
'slow' );
}
}
});
}
</script>
</body>
</html>

关于jquery - 使用 jquery-ui Droppable 时,为什么当有人开始拖动可拖动对象时会立即触发接受事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20024960/

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