jQuery 悬停菜单
我有一个 div("dv1"),其中包含 AJAX 更新面板,其中包含多个下拉控件。当索引更改时,这些控件会进行回发。然后我使用如下所示的 jQuery 悬停函数:
$('#lblDate').hover($('#dv1').slideDown(),$('#dv1').slideUp());
当我将鼠标悬停在标签上时,该函数工作正常,但每当我尝试在任何下拉列表中选择某些内容时,div 都会向上滑动。有人知道这个问题的解决方法吗?
谢谢
I have a div("dv1") with AJAX update panel inside which contains multiple dropdown controls. These controls do a postback when the index is changed. Then I use a jQuery hover function like the one below:
$('#lblDate').hover($('#dv1').slideDown(),$('#dv1').slideUp());
This works fine when I hover on the label, but whenever I try to select something on any dropdown, the div slides up. Anyone knows a workaround on this?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将函数传递给
hover
而不是调用它们,如下所示:另外,您需要为控件使用 ASP.Net 的 ClientID,如下所示:
要回答您的问题,您可能想要包装标签和
中的下拉列表并将鼠标悬停在其上。
You need to pass functions to
hover
instead of invoking them, like this:Also, you need to use ASP.Net's ClientIDs for your controls, like this:
To answer your question, you probably want to wrap the label and the dropdown in a
<div>
and hover on that.