只能拖动可拖动元素一次

发布于 2024-10-16 00:43:04 字数 614 浏览 3 评论 0原文

我正在开发一个小型应用程序,将元素拖动到可放置区域。我最近升级到 jQuery 1.5,我发现我只能拖动一个元素一次。

这意味着,如果用户不小心将其放置在可放置元素以外的其他位置,他将无法再次拖动它。

我正在使用 jQuery 1.5 和 jQuery UI 1.8.9。

我通过 .each 函数为每个元素设置可拖动状态。

还有其他人遇到过这个问题吗?我是 jQuery 新手,我很感谢任何帮助:)

    $(itemId).draggable({ 
    zIndex: 2700,
    helper: "clone",
    scroll: false,
    drag: function(event, ui) 
    {
        $("#container").css("background-color", "#fff");
    },
    stop: function(event, ui) 
    {
        $("#conatiner").css("background-color", "#F0EBE0");

    }
});

[编辑] 我还应该添加一点,我已使用委托函数将单击事件委托给同一对象。虽然之前这不是问题。

I'm working on a small app where I drag element to a droppable area. I recently upgraded to jQuery 1.5 and I discovered that I can only drag an element once.

That means that if the user accidently drops it somewhere else other than the droppable element, he will not be able to drag it again.

I am using jQuery 1.5 and jQuery UI 1.8.9.

I set the draggable state to each element via a .each function.

Has anybody else had this problem? I'm a jQuery novice, and I am thankful for any help :)

    $(itemId).draggable({ 
    zIndex: 2700,
    helper: "clone",
    scroll: false,
    drag: function(event, ui) 
    {
        $("#container").css("background-color", "#fff");
    },
    stop: function(event, ui) 
    {
        $("#conatiner").css("background-color", "#F0EBE0");

    }
});

[EDIT] I should also add that I have delegated a click event to the same object with the delegate function. Although it wasn't a problem before.

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

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

发布评论

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

评论(1

水晶透心 2024-10-23 00:43:04

这是 jQuery 1.5 引入的错误,它将在 jQuery 1.5.1 中修复:
http://bugs.jqueryui.com/ticket/6922

您需要恢复到jQuery 1.4.4 直到 1.5.1 发布。

This is a bug introduced with jQuery 1.5, and it will be fixed in jQuery 1.5.1:
http://bugs.jqueryui.com/ticket/6922

You'll need to revert back to jQuery 1.4.4 until 1.5.1 is released.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文