当鼠标悬停在可拖动元素上时,.hover 不起作用

发布于 2024-11-03 12:56:45 字数 274 浏览 1 评论 0原文

请原谅我的英语不好......

情况: 我有一个带有子菜单的菜单。 悬停时会打开子菜单。 (带有 ul 和 li 的简单下拉菜单)

我有一个管理区域,我想从中拖动菜单中的某些内容。

问题: 当我将某些内容拖到菜单中时,它不会折叠,就好像 .hover 不起作用一样 此外,菜单是可排序的,由于同样的问题,您可以将子项目拖动到主菜单,但主菜单中的项目不能拖动到子项目,因为 .hover 不起作用,菜单不会折叠。

当您将某些内容拖到 .hover 上时,它会被忽略吗?

Please pardon me for my bad english...

situation:
I've got a menu with submenus.
The submenus open when hovered.
(simple dropdown menu with ul's and li's)

I've got a admin area from which i want to drag something in the menu.

problem:
When I drag something into the menu, it won't collapse, as if the .hover doesn't work
Also the menu is sortable, because of the same problem you can drag subitems to mainmenu, but items from mainmenu can't be dragged to the subitems, because .hover doesn't work and the menu won't collapse.

Is .hover ignored when you drag something onto it?

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

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

发布评论

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

评论(1

我不咬妳我踢妳 2024-11-10 12:56:45

尝试替换

.hover(function(){},function(){});

.live('hover',function(){});

Try replacing the

.hover(function(){},function(){});

with

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