jquery 拖放:Droppable 不适用于具有 float:left 或 inline-block 的元素

发布于 2024-10-25 08:46:53 字数 467 浏览 4 评论 0原文

其他人以前也遇到过这个问题吗?

我似乎无法进入具有 display: inline-block 或 float:left 的 TARGET。

这是示例代码的链接: http://jsbin.com/arusu3/141

我发现的一些信息: http://forum.jquery.com/topic/connecttosortable -fails-when-sortable-list-is-floated

我注意到如果我将其完全转储到中间,是否可以内联工作。但如果我的拖动的任何部分接触到它,它会很高兴接受掉落。

Anyone else have this problem before?

I cannot seem to drop into TARGET that has display: inline-block or float:left.

Here's link to sample code:
http://jsbin.com/arusu3/141

Some info I found:
http://forum.jquery.com/topic/connecttosortable-fails-when-sortable-list-is-floated

I noticed if might work INLINE if I dump it EXACTLY in the middle. but it would be nice for it to accept drop if any part of my drag touches.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

旧人哭 2024-11-01 08:46:53

我能够放到 div-inline 上。 (使用最新的 Chrome)

也许这是一个容忍问题?

    target.droppable({
        drop: function(event, ui) {
            alert('row dropped ' + $(this).text());
        },
        accept: source.selector,
        tolerance: 'touch'
    });

http://jsbin.com/arusu3/144 :将容差编辑为“触摸”

http://jqueryui.com/demos/droppable/#option-tolerance

I was able to drop onto the div-inline. (Using latest Chrome)

Perhaps it's a tolerance issue?

    target.droppable({
        drop: function(event, ui) {
            alert('row dropped ' + $(this).text());
        },
        accept: source.selector,
        tolerance: 'touch'
    });

http://jsbin.com/arusu3/144 : edited the tolerance to 'touch'

http://jqueryui.com/demos/droppable/#option-tolerance

葬心 2024-11-01 08:46:53

清除你的浮动。

#your_sortable:after { clear:both; content:'.'; display:block; height:0; line-height:0; font-size:0; visibility:hidden; padding:0; margin:0; }

Clear your float.

#your_sortable:after { clear:both; content:'.'; display:block; height:0; line-height:0; font-size:0; visibility:hidden; padding:0; margin:0; }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文