div で asp .net メニューを使用しました。「Menu」という別の div 要素にマウスを置いてメニューを表示する必要があります。
問題は、マウスが ["Menu" 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>
親切に助けてください。