我在 div 中使用了 asp .net 菜单。我需要通过将鼠标悬停在另一个名为“菜单”的 div 元素上来显示菜单。
问题是当鼠标移到菜单上[远离“菜单”div]时菜单消失,从而使菜单不可访问。
jQuery(document).ready(function () {
//toggle the componenet with class msg_body
jQuery(".heading").hover(function () {
jQuery(this).next(".txtcontent").slideToggle("slow");
});
});
HTML 代码:
<div class="heading" style="width: 100%; font-size: 7pt; font-family: 'Lucida Bright';">
<span style="font-size: 20pt">MENU</span>
</div>
<div class="txtcontent" style="width: 90%; display: none;">
<asp:Menu> Menu contents </asp:Menu>
<div>
请帮忙。