将恢复与 jQuery 可拖动/可放置相结合

发布于 2024-10-19 22:51:07 字数 288 浏览 6 评论 0原文

我正在使用带有 jQ​​uery UI 的拖放插件。我想使可拖动容器只能拖放到容器上。在演示中:

http://jqueryui.com/demos/droppable/#revert

它有2 个选项。一是拖到容器时恢复,二是不拖到容器时恢复。

有没有办法将这两者结合起来?我不希望能够将 #draggable 容器拖动到没有 #droppable 容器的任何地方。

I'm using the drag and drop plugin with jQuery UI. I'd like to make it so that the draggable container can only be dragged and dropped on the container. In the demonstration:

http://jqueryui.com/demos/droppable/#revert

It has 2 options. One is to revert when it drags to the container, the second is to revert when it isn't dragged to the container.

Is there a way to combine these two? I don't want to be able to drag the #draggable container anywhere where there isn't a #droppable container.

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

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

发布评论

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

评论(1

北城半夏 2024-10-26 22:51:07

如上所述,我通过添加以下内容找到了解决方案:

$('#draggable2').remove(); 
$('#draggable').draggable({ revert: true });

As stated above, I found the solution by adding :

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