Jquery 可删除传播
我正在尝试在菜单中制作可放置的元素。我在页面的右下角放置了 3 个绝对位置的 div。
请参阅:http://img600.imageshack.us/img600/9927/sinttulo1vv.png
绿色div是一个用于检测结束的div:
$("#green" ).droppable({
accept: "div.widget",
tolerance: 'pointer',
over: function(event, ui) {
// show the red div
}
});
红色div是菜单,一开始不显示,但是当它超过绿色div时 出现。
蓝色 div 用于检测 out:
$("#blue").droppable({
accept: "div.widget",
tolerance: 'pointer',
out: function() {
// Hide the red div.
}
});
问题是,当我在菜单中放置某些内容时,首先检测此 droppables 并且从不进行放置,进行 over 和 out 事件但不进行放置。
我正在尝试贪婪的选项,但什么也没做:S
有人可以帮助我吗? 谢谢!
Im trying to make a droppable of elements in a menu. I put 3 divs whit position absolute, in the right-bottom of the page.
See: http://img600.imageshack.us/img600/9927/sinttulo1vv.png
The green div its a div for detect over:
$("#green" ).droppable({
accept: "div.widget",
tolerance: 'pointer',
over: function(event, ui) {
// show the red div
}
});
The red div its the menu, its display none at first, but when its over of green div this appear.
The blue div its for detect the out:
$("#blue").droppable({
accept: "div.widget",
tolerance: 'pointer',
out: function() {
// Hide the red div.
}
});
The problem is that when i drop something in th menu, detect first this droppables and never make the drop, make the over and out events but no makes the drop.
Im triing the greedy option but dont make anything :S
Someone can help me?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论