当鼠标停留在slide
div 上时,slide_panel
div 将变得可见。
但是,当鼠标随后退出slide
div 并位于 中的内容上方时slide_panel
,面板不会保持可见。
那么,一旦面板最初可见,如何保持切换面板可见mouseover
?
HTML:
<div class = "slide">category:</div>
<div class = "slide_panel">
<a href = "#" title = "">asdf</a><br />
<a href = "#" title = "">qwerty</a><br />
</div>
<div class = "slide">another category:</div>
<div class = "slide_panel">
<a href = "#" title = "">another asdf</a><br />
<a href = "#" title = "">another qwerty</a><br />
</div>
jQuery:
$(".slide").mouseover(function() {
$(this).next(".slide_panel").slideToggle();
}).mouseout(function() {
$(this).next(".slide_panel").slideToggle();
});
编辑:
我希望
slide_panel
然后消失mouseout
,本质上就像一个下拉菜单。