Jquery droppable 选项破坏了该元素的可拖动行为
如果我为也可拖动的可放置对象指定 accept
选项,则会破坏该可放置对象的可拖动行为。
为了防止这些可拖放的嵌套,我将接受选项指定为仅属于可拖放的类。我使用 $('div.link_drop_box', $('#'+card_id)).droppable({accept: '.link' });
执行此操作。这是我指定可放置可拖动 div 的 javascript。
// Define more LinkCard options
$('#'+card_id).css('width',350);
$('#'+card_id).css('height',250);
$('#'+card_id).resizable();
$('#'+card_id).draggable();
$('#'+card_id).draggable("option", "handle", '.linkcard_header');
$('#'+card_id+' p').editableText();
$('#'+card_id).draggable({ stop: function(event, ui) { update_linkcard_xml(card_id) } });
// Make droppable
$('div.link_drop_box', $('#'+card_id)).droppable({ accept: '.link' });
$('div.link_drop_box', $('#'+card_id)).droppable({
drop: function( event, ui ) {
var $item = ui.draggable;
$item.fadeOut(function() {
$item.css( {"left":"", "top":"", "bottom":"", "right":"" }).fadeIn();
});
$item.appendTo( this );
}
});
现在可放置的 div 不再可拖动。奇怪的行为是有几个这样的可放置 div。第一个仍然可以拖动,其他则不能。什么可能导致接受选项破坏可拖动行为。
If I specify the accept
option for a droppable that is also draggable this breaks the draggable behavior of that droppable.
To prevent nesting of these draggable droppables, I specify the accept option to be only the class that belongs in the droppable. I do this with $('div.link_drop_box', $('#'+card_id)).droppable({ accept: '.link' });
. Here is the javascript where I specify the droppable draggable div.
// Define more LinkCard options
$('#'+card_id).css('width',350);
$('#'+card_id).css('height',250);
$('#'+card_id).resizable();
$('#'+card_id).draggable();
$('#'+card_id).draggable("option", "handle", '.linkcard_header');
$('#'+card_id+' p').editableText();
$('#'+card_id).draggable({ stop: function(event, ui) { update_linkcard_xml(card_id) } });
// Make droppable
$('div.link_drop_box', $('#'+card_id)).droppable({ accept: '.link' });
$('div.link_drop_box', $('#'+card_id)).droppable({
drop: function( event, ui ) {
var $item = ui.draggable;
$item.fadeOut(function() {
$item.css( {"left":"", "top":"", "bottom":"", "right":"" }).fadeIn();
});
$item.appendTo( this );
}
});
Now the droppable divs aren't draggable anymore. The strange behavior is that there are several such droppable divs. The first one is still draggable, the the others are not. What could cause the accept option to break the draggable behavior.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
发现问题了。应该将所有选项放在一个可删除的方法中。以下作品。
Found the problem. Should put all the options in one droppable Method. The following works.