当可拖动对象被可放置对象拒绝时,如何提供用户反馈?

发布于 2024-08-28 03:14:26 字数 252 浏览 7 评论 0原文

jQuery 1.3 jQuery UI 1.7.2

我有一个应用程序,其中有许多仅接受单个可拖动的可放置 div。为此,我将所有可拖放对象上的接受选项设置为一个函数,该函数检查是否有有效的可拖放对象以及它是否已被占用。如果被占用,accept函数返回false,否则返回true。因此,如果用户尝试将可拖动对象放置在已占用的可放置对象上,则可拖动对象将恢复。

我想做的是,当用户将可拖动对象放置在已占用的可放置对象之上时,提供额外的反馈。知道我该怎么做吗?

jQuery 1.3
jQuery UI 1.7.2

I have an application where there are a number of droppable divs that accept only a single draggable. I do this by setting the accept option on all my droppable's to a function that check for a valid draggable and if it is already occupied. If it is occupied, the accept function returns false, else it returns true. Thus if a user tries to drop a draggable on a droppable that is already occupied, the draggable reverts.

What I would like to do is provide additional feedback when a user drops a draggable on top of an occupied droppable. Any idea how I can do this?

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

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

发布评论

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

评论(1

伴我心暖 2024-09-04 03:14:26

为什么不在课堂上做这个呢?当您放置拖动的元素时,将父项设置为“full”类。然后你可以做类似的事情:

if($this).hasClass('full'))
    //Alert user it is full

Why not do this with a class? Set the parent item with the class 'full' when you drop the dragged element. Then you could do something like:

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