jquery UI droppable 和 sortable 不起作用?

发布于 2024-11-25 14:27:45 字数 444 浏览 2 评论 0原文

我四处搜寻,找不到解决这个问题的方法。

我正在尝试集成 jqueryUI 可排序和可拖动,但我似乎无法让它工作。

我这里有一个非常基本的演示。我试图将其简化为尽可能简单的实现,因为我在 SO 上发现的所有其他示例都相当复杂。

http://jsfiddle.net/e4Z8N/7/

有谁知道为什么这个基本示例获胜不工作吗?

编辑:我发现是 CSS 类破坏了整个事情。如果你去掉 CSS 类,它就可以正常工作。没有 CSS 类的工作版本 http://jsfiddle.net/e4Z8N/17/ 有谁知道为什么它会这样?

I searched around and couldn't find a solution to this problem.

I am trying to integrate jqueryUI sortable and draggable but I can't seem to get it to work.

I have a VERY basic demo here. I've tried to reduce it to the SIMPLEST implementation possible as all the other examples I found on SO were rather complicated.

http://jsfiddle.net/e4Z8N/7/

Does anyone have any idea why this basic example won't work?

EDIT: I've figured out that it is the CSS class that disrupts the whole thing. If you take away the CSS class it works fine. Working version w/o CSS class http://jsfiddle.net/e4Z8N/17/ Does anyone know why it behaves like this?

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

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

发布评论

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

评论(1

阳光下慵懒的猫 2024-12-02 14:27:45

将公差更改为更合适的值。默认为相交。

  • 适合:可拖动与可放置完全重叠
  • 相交:可拖动与可放置重叠至少 50%
  • 指针:鼠标指针与可放置区域重叠
  • 触摸:可拖动与可放置重叠任意数量

“触摸”似乎都有效。你可以尝试其他的。

$(function () {
    $('#trash_bin').droppable({
        tolerance: 'touch',
        drop : function() {
            alert('delete!')
        }
    });
    $('#trash').sortable()
});

Change the tolerance to a more suitable value. The default is intersect.

  • fit: draggable overlaps the droppable entirely
  • intersect: draggable overlaps the droppable at least 50%
  • pointer: mouse pointer overlaps the droppable
  • touch: draggable overlaps the droppable any amount

"touch" seem to work. You can try the others.

$(function () {
    $('#trash_bin').droppable({
        tolerance: 'touch',
        drop : function() {
            alert('delete!')
        }
    });
    $('#trash').sortable()
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文