如何防止我的 jQuery 可拖动对象随其容器一起消失?

发布于 2024-11-26 10:51:20 字数 221 浏览 1 评论 0原文

我有一个可拖动的助手 ($('#tgt').draggable({helper: 'clone'})),它在容器内可见,并在悬停时淡出。不幸的是,一旦我将可拖动对象拖到容器外的可放置目标上,我就会丢失它。当原始容器淡出时它也会淡出。

如何避免这种情况?我尝试在开始事件中将助手重新设置为主体的父级,但这会导致其他奇怪的情况。另外,在可拖动帮助器上覆盖 css 不透明度等似乎也没有帮助。

I have a draggable helper ($('#tgt').draggable({helper: 'clone'})) that is visible inside a container that fades out on hoverOut. Unfortunately, once I drag my draggable outside of the container toward the droppable target I lose it. It fades out when the original container fades out.

How might this be avoided? I tried in the start event to reparent the helper to the body but this causes other oddities. Also overriding the css opacity and such on the draggable helper didn't seem to help.

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

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

发布评论

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

评论(2

花桑 2024-12-03 10:51:21

您可以编写两个回调函数来处理拖动开始和拖动停止事件,并且在这些函数中您可以启用/禁用容器的动画行为。

$('#tgt').draggable({
    helper: 'clone', 
    start: function(event, ui){...},
    stop: function(event, ui){...}
});

You can write two callback functions to handle both drag start and drag stop events, and in those functions you can enable/disable the animation behavior of the container.

$('#tgt').draggable({
    helper: 'clone', 
    start: function(event, ui){...},
    stop: function(event, ui){...}
});
廻憶裏菂餘溫 2024-12-03 10:51:21

解决了。只需调用 appendTo 选项即可为帮助程序指定不同的父级。

Solved. Just needed to call the appendTo option to specify a different parent for the helper.

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