Jquery 可删除传播

发布于 2024-12-01 12:52:13 字数 807 浏览 1 评论 0原文

我正在尝试在菜单中制作可放置的元素。我在页面的右下角放置了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文